/* all page default css */
main {
    font-family: 'Lexend Deca';
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: var(--skyblue);
    height: 100vh;
}

:root {
    --primary: #1E1E1E;
    --skyblue: #F4F7FE;
    --darkgray: #A3AED0;
    --gray: #6C6A81;
    --lightblue: #058ED9;
    --darkblue: #363F56;
    --lightgray: #F8F7FB;
    --lightdarkgray: #636A7D;
    --red: #F22F46;
}


/*WordPress css overwrite*/
div#wpcontent {
    padding-left: 0 !important;
}
html.wp-toolbar {
    padding-top: 0px !important;
}
#wpbody-content {
    padding-bottom: 0px !important;
}

main::-webkit-scrollbar {
    display: none;
}
main {
    overflow: scroll;
}
main {
    padding-top: 32px !important;
}

#adminmenuwrap {
    padding-top: 32px;
}
@media screen and (max-width: 782px){
    main {
        padding-top: 46px !important;
    }   
    .sticky-menu #adminmenuwrap {
        padding-top: 46px;
    }    
}
@media screen and (max-width: 600px){
    main {
        padding-top: 0px !important;
    }   
    .sticky-menu #adminmenuwrap {
        padding-top: 0px;
    }    
}


/*loader*/
.loader_container {
    position: fixed;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.5;
    z-index: 100;
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.loader {
    top: 45%;
    left: 45%;
    position: relative;
    z-index: 100;
}

/*Msg Popup*/
.msg_popup_container {
    position: fixed;
    background: #00000080;
    opacity: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
    display: none;
}
.msg_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 600px;
    width: 80%;
    text-align: center;
    z-index: 100;
}
.msg_popup h1 {
    color: #464646;
}
button#msg_popup_btn {
 font-size: 16px;
 position: relative;
 margin: auto;
 padding: 1em 2.5em 1em 2.5em;
 border: none;
 background: #fff;
 transition: all 0.1s linear;
 box-shadow: 0 0.4em 1em rgba(0, 0, 0, 0.1);
 margin-top: 1.5em;
}

button#msg_popup_btn:active {
 transform: scale(0.95);
}

button#msg_popup_btn span {
 color: #464646;
 font-size: 20px;
}

button#msg_popup_btn .border {
    position: absolute;
    border: 0.15em solid #f3f3f3 !important;
    transition: all 0.3s 0.08s linear;
    top: 50%;
    left: 50%;
    width: 9em;
    height: 3em;
    transform: translate(-50%, -50%);
}

button#msg_popup_btn:hover .border {
 display: block;
 width: 9.9em;
 height: 3.7em;
}

.full-rounded {
 border-radius: 2em;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}  


a{
    color: inherit;
    text-decoration: none;
}
a:focus {
    color: inherit;
    box-shadow: none;
    outline: none;
}
a:hover {
    color: inherit;
}