/*These styles need to be included to style.css. At this point as it is not clear, if style.css will be overwritten by the scss compiler from front end repo.
    Hence request front end dev to in-corporate this to front-end repo.
*/

/*Google Language Widget*/
.header__topmenu {    
    flex-basis: calc(100% - 170px);
}

.header__top {
    justify-content: space-between;
}

.header__toplang {
    flex-basis: auto;
}

.header__toplang .goog-te-gadget-simple {
    border: 1px solid #DBD6DE;
    border-radius: 4px;
    padding: 2px;
}

@media screen and (max-width: 760px) {
    .header__toplang {
        flex-basis: 100%;
    }

    .langblock:before {
        display: none;
    }
}

/*Forms block*/
.globalformcontainerblock h1 {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 36px;
    line-height: 110%;
    color: #0D3050;
}

.globalformcontainerblock h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.5;
    color: #0D3050;
}

.globalformcontainerblock .Form__Status {
    text-align: center;
}

.globalformcontainerblock .Form__Status p {
    margin: 0;
}

.globalformcontainerblock .Form__MainBody, .globalformcontainerblock ::placeholder {
    text-align: center;
}

.globalformcontainerblock .FormTextbox__Input, .globalformcontainerblock select {
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.8);
    height: 55px;
    border: 0;
    padding: 5px 20px;
    outline: none;
    background: #F9F8FA;
    border: 1px solid #F9F8FA;
    border-radius: 0;
    text-align: center;
}

.globalformcontainerblock .Form__Element.FormChoice fieldset label {
    margin: 5px 12px;
    cursor: pointer;
}

.globalformcontainerblock .FormTextbox__Input:focus, .globalformcontainerblock select:focus {
    border: 1px solid #0194D3;
}

.globalformcontainerblock .FormRecaptcha>div>div {
    margin: 0 auto;
}

.globalformcontainerblock button {
    border: 0;
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    cursor: pointer;
    outline: none;
    background: #0194D3;
    border-radius: 4px;
    color: #fff !important;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.33;
}

.globalformcontainerblock button:hover {
    background-color: #0D3050;
}

.globalformcontainerblock .FormCaptcha__Refresh {
    margin-top: 0px;
}

/* Notification Banner  */

.notificationBanner {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 24px 16px;
    gap: 32px;
    min-width: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: none !important;
}

.notificationBanner_TextContainer {
    max-width: 800px;
}

    .notificationBanner_TextContainer > * {
        line-height: 28px;
        margin-bottom: 6px;
    }

    .notificationBanner_TextContainer > p {
        font-size: 18px;
    }

.notificationBanner_Icon {
    height: 40px;
    width: 30px;
}

@media(max-width:520px) {
    .notificationBanner_Icon {
        width: 80px;
    }

    .notificationBanner_TextContainer {
        padding-right: 24px !important;
    }
}

.notificationBanner_CloseButton {
    position: absolute;
    top: 12px;
    right: 12px;
    height: 25px;
    width: 25px;
    cursor: pointer;
}

.alert-primary.notificationBanner {
    background-color: #0D3050 !important;
}

.alert-secondary.notificationBanner {
    background-color: #0194D3 !important;
}

.alert-danger.notificationBanner {
    background-color: #DC0000 !important;
}

.alert-info.notificationBanner {
    background-color: #0D3050 !important;
}

.forceToTop {
    position: fixed !important;
    top: 0 !important;
    z-index: 999 !important;
}

/*Global Map Block*/

#GlobalMap {
    align-items: center;
    background-color: #0d3050;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    width: 100vw;
}

#GlobalMapHeaderContainer {
    background-color: #38b5e5;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: max-content;
    left: 50%;
    margin-top: 45px;
    max-width: 100vw;
    position: absolute;
    transform: translateX(-50%);
    user-select: none;
    width: 1152px;
    z-index: 10;
}

#GlobalMapTitleContainer {
    background-color: #0194d3;
    border-radius: 8px 8px 0px 0px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 24px;
    width: 100%;
}

#GlobalMapSubTitleContainer {
    color: white;
    padding: 16px 24px;
    width: 100%;
}

#GlobalMapImageContainer {
    height: 954px;
    position: relative;
    z-index: 0;
}

    #GlobalMapImageContainer > svg {
        height: 100%;
        max-width: 100%;
    }

.globalMapMarker {
    cursor: pointer;
    height: 25px;
    opacity: 0.5;
    position: absolute;
    width: 25px;
}

.globalMapMarkerLabel {
    color: white;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    opacity: 0.5;
    position: absolute;
}

.globalMapPopupDesktop {
    border-radius: 8px;
    position: absolute;
    transform: scale(0);
    transition: all 0.2s ease-in-out;
}

    .globalMapPopupDesktop > * {
        opacity: 0;
        transition: all 0.6s ease-in;
    }

.globalMapPopupAnimation {
    transform: scale(1) !important;
}

    .globalMapPopupAnimation > * {
        opacity: 1;
    }

.globalMapPopupMobile {
    position: relative;
    width: 100vw !important;
}

.globalMapLeftOrientation {
    transform-origin: top left;
}

.globalMapRightOrientation {
    transform-origin: top right;
}

.globalMapPopup {
    align-items: start;
    background-color: #38b5e5;
    color: white;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 700;
    max-height: max-content;
    overflow: hidden;
    padding: 24px 16px;
    width: 375px;
}

    .globalMapPopup > ul {
        list-style: none;
        margin: 0px !important;
        padding: 0px !important;
    }

        .globalMapPopup > ul > li {
            margin: 0px !important;
        }

            .globalMapPopup > ul > li > a:hover {
                text-decoration: underline;
            }

.globalMapPopupCloseButton {
    cursor: pointer;
    height: auto;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 10px;
}

.globalMapPopupCountryName {
    color: #454545;
    font-weight: 700;
    margin-bottom: 4px;
}

.globalMapPopupSubtitle {
    font-weight: 700;
    margin-bottom: 4px;
}

.globalMapPopupDivider {
    border-bottom: 1px solid white;
    margin: 15px 0px;
    opacity: 0.5;
    width: 100%;
}

.globalMapData {
    display: none;
}

@media (max-width: 1280px) {
    #GlobalMapHeaderContainer {
        border-radius: 0px;
        margin-top: 0px !important;
        position: relative;
        width: 100vw;
    }

        #GlobalMapHeaderContainer > div {
            border-radius: 0px !important;
        }

    #GlobalMapImageContainer {
        height: 800px;
    }

        #GlobalMapImageContainer > svg {
            transform: scale(1.3);
        }
}

@media (max-width: 940px) {
    #GlobalMapImageContainer {
        height: 670px;
    }

        #GlobalMapImageContainer > svg {
            transform: scale(1.4);
        }
}

@media (max-width: 768px) {
    #GlobalMapImageContainer {
        height: 540px;
    }

        #GlobalMapImageContainer > svg {
            transform: scale(1.4);
        }
}

@media (max-width: 480px) {
    #GlobalMapImageContainer {
        height: 322px;
    }

        #GlobalMapImageContainer > svg {
            transform: scale(1.35);
        }
}

@media (max-width: 420px) {
    #GlobalMapImageContainer > svg {
        transform: scale(1.45);
    }
}
