﻿.loader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #00000052;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.loader-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 4px;
    /* thickness of the ring */
    background: conic-gradient(#007c18 0%, #007c18 25%, #e6e6e6 25%, #e6e6e6 100%);
    -webkit-mask: radial-gradient(farthest-side, #000 98%, #0000 100%) content-box;
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: rotate 1s linear infinite;
    box-sizing: border-box;
}

.loader-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.loader-text {
    font-size: 16px;
    color: white;
    font-weight: 700;
}

@keyframes rotate {
    to {
        transform: rotate(1turn);
    }
}

.form-group.error .form-control {
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
}

.error-message {
    color: red !important;
    font-size: 12px !important;
    display: none !important;
}

    .error-message.show {
        display: block !important;
    }

.custom-tab-item {
    padding: 5px 10px;
    text-decoration: none;
    color: #555;
    transition: 0.3s;
    border: 1px solid lightgrey;
}

    .custom-tab-item.active {
        color: #007c18;
        border: 1px solid #007c18;
        background-color: #007c181f;
    }

.tab-pane {
    display: none;
}

    .tab-pane.active {
        display: block;
    }

.vacancy-list li {
    font-size: 0.9375rem;
    text-align: left;
    margin: 0;
    color: #444;
    font-weight: 600;
    line-height: 30px;
}

.btn-apply {
    margin: 0;
    border: 1px solid lightgrey;
    padding: 8px 50px;
    color: black;
    font-weight: 600;
    border-radius: 5px;
    background-color: transparent;
}

    .btn-apply:hover {
        background-color: #007c18;
        color: white;
    }

@media (max-width: 560px) {
    .top-bar {
        padding: 0px 10px;
    }

    .nav-bar {
        padding: 0px;
    }
}

@media (max-width: 450px) {
    .sitename {
        font-size: 20px !important;
    }

    .sub-title {
        font-size: 12px !important;
    }
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    height: 100%;
}

.service-list > li {
    position: relative;
    display: block;
    background-color: white;
    border: 1px solid white;
    border-radius: 5px;
    padding: 5px 10px;
    margin-top: 12px;
}

.service-list-points .icon-text {
    display: flex;
    align-items: flex-start;
    margin-top: 5px;
}

.service-list-points i {
    margin-top: 5px;
}

.service-list-points p {
    margin: 0;
}
