@font-face {
            font-family: 'Gilroy';
            src: url('./fonts/Gilroy-Medium.eot');
            src: local('Gilroy Medium'), local('Gilroy-Medium'),
                url('./fonts/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
                url('./fonts/Gilroy-Medium.woff') format('woff'),
                url('./fonts/Gilroy-Medium.ttf') format('truetype');
            font-weight: 500;
            font-style: normal;
        }
        @font-face {
            font-family: 'Gilroy';
            src: url('./fonts/Gilroy-Regular.eot');
            src: local('Gilroy Regular'), local('Gilroy-Regular'),
                url('./fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
                url('./fonts/Gilroy-Regular.woff') format('woff'),
                url('./fonts/Gilroy-Regular.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'Gilroy';
            src: url('./fonts/Gilroy-SemiBold.eot');
            src: local('Gilroy SemiBold'), local('Gilroy-SemiBold'),
                url('./fonts/Gilroy-SemiBold.eot?#iefix') format('embedded-opentype'),
                url('./fonts/Gilroy-SemiBold.woff') format('woff'),
                url('./fonts/Gilroy-SemiBold.ttf') format('truetype');
            font-weight: 600;
            font-style: normal;
        }

body{
            background: linear-gradient(90deg, #33ACE3 -36.56%, #494D70 115.42%);
            font-family: Gilroy;
            font-style: normal;

            margin: 1px;
            --map-width: 100%;
            --map-height: 49vw;
        }
        h1{
            font-weight: 500;
            font-size: 24px;
            line-height: 32px;
            margin:0px;
        }
        p{
            font-weight: normal;
            font-size: 14px;
            line-height: 25px;
            margin-top: 0px;
        }
        a{
            text-decoration: none;
        }
#lastnameinp{
    display: none !important;
}
        #mapdiv{
            position: absolute;
            width: var(--map-width);
            height: var(--map-height);
            /*left: calc(50% - 1282px/2 - 508px);
            top: calc(50% - 657px/2 - 43.5px);*/
            filter: drop-shadow(0px 2px 2px rgba(249, 249, 248, 0.25));

            /*background: url(../images/map2x.png);*/
            background: url(../images/map4.svg);
            background-size: contain;
            background-repeat: no-repeat;
            top: 50%;
            transform: translate(-8%, -47%);
            max-height: 78%;
        }
        .loginwcontainer{
            height: 100%;
            width: 100%;
            box-sizing: border-box;
            position: absolute;
            top: 0;
            right: 0;
            display: flex;
            justify-content: right;
            align-items: center;
        }
        #login-window{
            border-radius: 16px;
            background: #FFFFFF;
            box-shadow: 2px 10px 40px #465B81;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
            padding: 45px 50px;
            text-align: center;
            min-width: 550px;
            margin-right: 200px;
        }
        #wyap-logo-login{
            margin: 5% auto;
            width: 60%;
        }
        #wyap-logo-reg{
            margin: 2% auto 5%;
            width: 60%;
        }
        #wayap-password{
            margin-bottom: 2% !important;
        }
        #confirm-wayap-password{
            margin-bottom: 2% !important;
        }
        #wap-login-form{
            position: relative;
        }
        #wap-login-form input{
            display: block;
            box-sizing: border-box;
            width: 100%;
            border: 1px solid #D3D5DE;
            border-radius: 4px;
            margin: 5% 0px;
            font-family: Gilroy;
            font-size: 16px;
            line-height: 25px;
            padding: 6px 15px;
        }
        #wap-login-form input:focus{
            outline: 1px solid #3F7DAA;
        }
        input::-moz-placeholder { 
            color: #808080; 
        }
        input::-webkit-input-placeholder { 
            color: #808080; 
        }

        #rem-and-forget{
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            margin-top: 10px;
        }
        #rem-and-forget a{
            color: #000000;
            margin: 2px;
        }
        .show-pass-butcontainer{
            position: absolute;
            top: 0;
            height: 100%;
            right: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .show-pass-butcontainer>a{
            background: url(../images/eye-slash-regular.svg) 0 0 no-repeat;
            width: 20px;
	        height: 16px;
            cursor: pointer;
        }
        .show-pass-butcontainer>a.view{
            background: url(../images/eye-regular.svg) 0 0 no-repeat;
            width: 19px;
	        height: 16px;
        }
        #check-remember{
            position: absolute;
            z-index: -1;
            opacity: 0;
        }
        #check-remember+label {
            display: inline-flex;
            align-items: center;
            user-select: none;
        }
        #check-remember+label::before {
            content: '';
            display: inline-block;
            width: 15px;
            height: 15px;
            flex-shrink: 0;
            flex-grow: 0;
            border: 1px solid #D3D5DE;
            border-radius: 0.25em;
            margin-right: 0.5em;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 50% 50%;
        }
        #check-remember:checked+label::before {
            /*border-color: #0b76ef;
            background-color: #0b76ef;*/
            background-image: url("../images/check-solid.svg");
        }
        #subm-login,.submemailbtn{
            background: #3F7DAA;
            box-shadow: 0px 4px 8px rgba(63, 125, 170, 0.24);
            border: none;
            color: white;
            min-width: 180px;
            margin: 20px auto;
            font-size: 15px;
            display: block;
            box-sizing: border-box;
            border-radius: 4px;
            padding: 6px 30px;
            font-family: Gilroy;
            cursor: pointer;
            -webkit-transition: all 0.33s ease;
            -moz-transition: all 0.33s ease;
            -o-transition: all 0.33s ease;
            transition: all 0.33s ease;
        }
        #subm-login:hover,.submemailbtn:hover{
            background: #459edd;
        }
#wrongcredentp{
    font-size: 16px;
    color: red;
    font-weight: 600;
}
.wap-login-pas-container{
    position: relative;
}

#wayap-form-registration-cont{
    align-content: center;
}

.log-loading-cont > img{
    margin: 100px 0px;
    opacity: 0;
    animation: log-loading-logo 0.3s ease-in forwards;
}

@keyframes log-loading-logo{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.log-response-result-fulfilment{
    width: 100%;
}
.log-response-result-fulfilment > p{
    width: 100%;
    text-align: -webkit-center;
}

.log-response-result-fulfilment > img{
    margin: 40px 0px 30px; 
    height: 70px;
}

.log-sucess-result-fulfilment{
    color: green;
}

.log-notsucess-result-fulfilment{
    color: red;
}
#langPKresendavin{
    display: inline;
}
.lowerbldntrl{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.lowerbldntrl>*{
    font-weight: normal;
    font-size: 14px;
    line-height: 25px;
    margin-top: 0px;
    margin-bottom: 14px;
}
.lowerbldntrl>a{
    color: #3f7daa;
}
.lowerbldntrl>a:hover,#langPKpassfog:hover{
    text-decoration: underline;
}

.lang-select {
    cursor: pointer;
    right: 20px;
    position: absolute;
    display: inline-block;
    font-family: sans-serif;
    top: 20px;
    z-index: 1;
}
.lang-select p{
    margin: 0;
    font-size: 14px
}
.selected-lang {
    border: 1px solid #ffffff;
    border-radius: 20px;
    padding: 3px 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.33s;
}
.selected-lang{
    color: #ffffff;
}

.selected-lang .fullselect{
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 8px;
    transition: max-width 0.33s, opacity 0.33s;
}

.selected-lang:hover .fullselect{
    max-width: 120px;
    opacity: 1;
}
.lang-select.openselect   .selected-lang .fullselect,
.lang-select.closing .selected-lang .fullselect{
    max-width:120px;
    opacity:1;
}
.selected-lang .arrowselect{
    margin-left: 8px;
    font-size: .7em;
    transition: transform .33s;
}
.selected-lang[aria-expanded="true"] .arrowselect {
    transform: rotate(180deg);
}


.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #88acc9;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(63, 125, 170, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all .33s;
    z-index: 10;
}
.lang-select.openselect .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown li {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.lang-dropdown li:first-child{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.lang-dropdown li:last-child{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.lang-dropdown li:hover {
    background: #f0f0f0;
}
.lang-dropdown .abbr {
    font-weight: bold;
}
.lang-dropdown .fullselect {
    margin-left: 8px;
    flex: 1;
}
.lang-dropdown .aiselect {
    margin-left: 8px;
    font-size: 12px;
    color: #fff;
    background: #3f7daa;
    border-radius: 4px;
    padding: 0px 6px;
    position: relative;
}
.lang-dropdown .aiselect:hover{
    background: #459edd;
}
.lang-dropdown .aiselect:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-88%);
    white-space: nowrap;
    box-shadow: 0px 4px 8px rgba(63, 125, 170, 0.24);
    background: rgba(0,0,0,.8);
    color: #fff;
    font-size: 10px;
    padding: 4px 6px;
    border-radius: 4px;
    pointer-events: none;
}

#registration-result>p{
    color:red;
}
.popresponse-result-success>p{
    margin: 0 0 15px;
    color: green;
}
.popresponse-result-success>p>span,.popresponse-result-error>p>span{
    font-weight: 600;
    color: black;
}
.popresponse-result-success>a,.popresponse-result-error>a{
    color: #3f7daa;
}
.popresponse-result-success>a:hover,.popresponse-result-error>a:hover{
    text-decoration: underline;
}
.popresponse-result-success::before{
                    content: '';
                    background: url('../images/success.svg') no-repeat center center;
                    background-size: contain;
                    height:70px;
                    width:70px;
                    display: inline-block;
                    -webkit-transition: all 0.33s ease;
                    -moz-transition: all 0.33s ease;
                    -o-transition: all 0.33s ease;
                    transition: all 0.33s ease;
                    margin-top: 20px;
                    margin-bottom: 20px;
}
.popresponse-result-success>p>a{
    color: #3f7daa;
}
.popresponse-result-success>p>a:hover{
    text-decoration: underline;
}
.popresponse-result-error>p{
    margin: 0 0 15px;
    color: red;
    font-size: 16px;
}
.popresponse-result-error::before{
                    content: '';
                    background: url('../images/notsuccess.svg') no-repeat center center;
                    background-size: contain;
                    height:70px;
                    width:70px;
                    display: inline-block;
                    -webkit-transition: all 0.33s ease;
                    -moz-transition: all 0.33s ease;
                    -o-transition: all 0.33s ease;
                    transition: all 0.33s ease;
                    margin-top: 20px;
                    margin-bottom: 20px;
}

#wap-variable-block{
    margin-top: 10px;
    position: relative;
}
#wap-popuper-codecont,#wap-popuper-newpasscont{
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

#wap-variable-block>input,#wap-variable-block .wap-login-pas-container>input{
            display: block;
            box-sizing: border-box;
            width: 100%;
            border: 1px solid #D3D5DE;
            border-radius: 4px;
            margin: 0;
            font-family: Gilroy;
            font-size: 16px;
            line-height: 25px;
            padding: 6px 15px;
}
#wap-variable-block>input:focus,#wap-variable-block .wap-login-pas-container>input:focus{
            outline: 1px solid #3F7DAA;
}
#wap-recovernewpass-form>.wap-login-pas-container:first-child{
    margin-bottom: 20px;
}
.wap-error-outline{
    outline: 1px solid red;
}
#wap-error-rec-mes>p{
    color: red;
    font-weight: 600;
    font-size: 16px;
}
#wap-variable-block h4{
    font-weight: 500;
                        font-size: 16px;
                        color: #3F7DAA;
                        line-height: 25px;
                        margin-top: 0;
}

                    .wap-code-container {
                        display: flex;
                        justify-content: center;
                        gap: 8px;
                    }

                    .wap-code-container>input {
                        width: 40px;
                        height: 50px;
                        border: 2px solid #bfbfbf;
                        border-radius: 10px;
                        text-align: center;
                        font-size: 20px;
                        font-weight: bold;
                        color: #333;
                        background: #ffffff;
                        transition: all 0.3s ease;
                        outline: none;
                    }

                    .wap-code-container>input:focus {
                        border-color: #3F7DAA;
                        background: white;
                        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
                    }

                    .wap-code-container>input:valid {
                        border-color: #4caf50;
                        background: #f0fff0;
                    }
                    .submemailbtn:disabled {
                        opacity: 0.6;
                        cursor: not-allowed;
                        transform: none;
                    }

                    #resendcodeblockdiv>a{
                        color: #3075a8;
                        font-size: 15px;
                    }
                    #resendcodebut{
                        cursor: pointer;
                    }
                    #resendcodebut:hover{
                        text-decoration: underline;
                    }
                    #resendcodespantime{
                        display: inline-block;
                        min-width: 32px;
                        text-align: left;
                        color:black;
                        font-weight:500;
                    }
#wap-error-entreccode{
    color: red;
    font-weight: 500;
    margin-top: 20px;
    display: none;
}
.wap-code-container>input.wap-bad-reccode{
    border-color: #ff7777;
    background: #fff0f0;
}
#way-error-entnpass{
    color: red;
    font-weight: 500;
    margin-top: 20px;
}

@media only screen and (max-width: 1100px) {
    #login-window{
        /*margin-right: unset;*/
        margin: 10px;
    }
    .loginwcontainer{
        justify-content: center;
    }
    #mapdiv{
        width: 99%;
        height: 100%;
        top: 18%;
        transform: none;
        overflow: hidden;
    }
}
@media only screen and (max-width: 600px) {
    #login-window{
        min-width: 400px;
        padding: 20px;
    }
    .wap-code-container>input{
        width: 25px;
        height: 35px;
        font-size: 16px;
    }
}
@media only screen and (max-width: 420px) {
    #login-window{
        min-width: 300px;
    }
    #resendcodeblockdiv>a{
        font-size: 14px;
    }
    #wap-variable-block h4{
        font-size: 14px;
    }
}
@media only screen and (max-width: 380px) {
    .wap-code-container>input{
        width: 20px;
        height: 30px;
    }
}
@media only screen and (max-height: 640px) {
    #login-window{
        padding: 20px 50px;
    }
    p{
        margin: 0;
    }
}
@media only screen and (max-height: 560px) {
    .wap-grinpcont,.wap-grinpcont2{
        display: grid;
        grid-template-columns: calc(50% - 8px) calc(50% - 8px);
        gap: 16px;
    }
    .wap-grinpcont2{
        margin-top: 10px;
    }
    #wyap-logo-login,#wyap-logo-reg{
        width: 200px;
        margin: 0;
    }
    #login-window{
        padding: 20px 40px;
    }
    #wayap-password{
        margin-bottom: 0 !important;
    }
    #confirm-wayap-password{
        margin-bottom: 0 !important;
    }
    #wap-login-form input{
        margin: 0;
    }
    #subm-login,.submemailbtn{
        margin: 10px auto;
    }
    .wap-scr-wide-loghe{
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        margin: 10px 0px;
        gap: 15px;
    }
    h1{
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 800;
        font-size: 26px;
        color: #3F7DAA;
    }
}