*{

    -webkit-box-sizing: border-box;

    -moz-box-sizing: border-box;

    box-sizing: border-box;

}



*:before,

*:after {

    -webkit-box-sizing: border-box;

    -moz-box-sizing: border-box;

    box-sizing: border-box;

}

::-webkit-scrollbar {

    width: 5px

}



::-webkit-scrollbar-track {

    -webkit-box-shadow: inset 0 0 6px #808184;

    border-radius: 2px;

}



::-webkit-scrollbar-thumb {

    border-radius: 2px;

    -webkit-box-shadow: inset 0 0 20px #ff7c08



}





body{

    position: relative;

    width: 100%;

    min-height: 100vh;

    overflow: hidden;

    overflow-y: auto;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    align-items: center;

    font-family: 'NexaLight',sans-serif;

}





.main-btn{

    border: 0;

    outline: 0;

    box-shadow: none;

    background-color: transparent;

    display: flex;

    justify-content: center;

    align-content: center;

    margin:0 auto;

    background-color: #CA9F3A;

    background-image: linear-gradient(to bottom, #CA9F3A , #FFF);

    color: #3D3D3D;

    font-weight: bold;

    font-size: 1.2rem;
    min-width: 180px;
    font-family: 'NexaBold' , sans-serif;
    padding-top: .6rem;

}



.main-btn:focus,

.main-btn:hover{

    border: 0;

    outline: 0;

    box-shadow: none;

    background-color: transparent;

}



.invalid-feedback, .back-validation-content, .back-validation, .error-msg,#error-p {

    display: none;

    font-size: 12px;

    line-height: 1;

    margin: auto;

    margin-bottom: .2rem;

    width: 100%;

    text-align: center;

    margin-top: .25rem;

    color: #dc3545;

    max-width: 320px;

}



.thankYou{min-height: 100vh;background: url(../images/loginbg.jpg) no-repeat center center fixed;background-size: cover;background-position: center;display: flex;flex-direction: column;justify-content: center;width: 100%;padding-bottom: 5vw;}

.thankYou .rotatable {margin-top: -30vh;color: #FFF;max-width: 560px;margin: auto;text-align: center;line-height: 1.2;}
.thankYou .rotatable h2{
    font-family: 'BKANT' ,sans-serif;
    font-size: 4.4rem;
}
.thankYou .rotatable h6{
    font-family: 'NexaBold' ,sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0;
}

.thankYou .rotatable p{
    font-family: 'NexaLight' ,sans-serif;
    font-size: 1.3rem;
}



.thankYou .rotatable > img {

    display: block;

    margin: auto;

    margin-bottom: 15px;

    max-width: 350px;

    width: 20vw;

}











/*rotateMessage*/

.rotateMessage{text-align: center;display: none;position: fixed;top: 0;background-color: #000;width: 100%;height: 100vh;margin: 0 auto;z-index: 11;}

.rotateMessage-container{

  width: 100%;

  height: 100%;

  position: relative;

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: center;



}

.rotateMessage-content{position: relative;background-color: #0e0e0e;width: 100%;max-width: 80%;height: 100%;max-height: 32%;display: flex;align-items: center;justify-content: center;border-radius: 25px;}

.rotateMessage-text{text-align: center;color: #EABB71;font-family: 'NexaBold';font-size: 27px;line-height: 29px;}





/* start style of the spin  */



.loading-overlay {
    background: rgba(0, 0, 0,  .97);
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}

.rotatable > img {
    display: block;
    margin: auto;
    margin-bottom: 15px;
    max-width: 100%;
    width: 100%;
}
.reverse-spinner {
    position: relative;
    height: 150px;
    width: 150px;
    border: 6px solid transparent;
    border-top-color: #EABB71;
    border-left-color: #EABB71;
    border-radius: 50%;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;

}



.overlay-hidden {
    display: none !important;
}

.reverse-spinner::before {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    content: "";
    border: 6px solid transparent;
    border-top-color: #fff;
    border-left-color: #fff;
    border-radius: 50%;
    -webkit-animation: spinBack 1s linear infinite;
    animation: spinBack 1s linear infinite;

}


@-webkit-keyframes spin {
from {
    -webkit-transform: rotate(0);
    transform: rotate(0)
}
to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
}

}



@keyframes spin {
from {
    -webkit-transform: rotate(0);
    transform: rotate(0)
}
to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
}

}



@-webkit-keyframes spinBack {
from {
    -webkit-transform: rotate(0);
    transform: rotate(0)
}
to {
    -webkit-transform: rotate(-720deg);
    transform: rotate(-720deg)
}

}



@keyframes spinBack {
from {
    -webkit-transform: rotate(0);
    transform: rotate(0)
}
to {
    -webkit-transform: rotate(-720deg);
    transform: rotate(-720deg)
}

}





@media only screen and (orientation:portrait){ 

    .rotateMessage{

        display: flex;

    }

  .rotateMessage-text{text-align: center;color: #EABB71;font-family: 'NexaBold';font-size: 20px;line-height: 22px;}

}



@media (max-width:992px) and (orientation:landscape) {
    
    .rotateMessage{

        display: flex;

    }

}



