:root {
    --primary: rgba(73, 218, 141, 1);
    --primary-focus: rgba(73, 218, 141, .8);
    --secondary: rgba(25, 26, 31, 1);
    --secondary-focus: rgba(25, 26, 31, .8);
    --white: #ffffff;
    --black: #000;
    --lightblack: #333;
}

.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--secondary) !important;
}

.btn-secondary {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.bg-secondary {
    background: var(--secondary) !important;
}

#load-screen {
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary) !important;
    position: fixed;
    opacity: 1;
    z-index: 9999;
    text-align: center;
}

#load-screen img {
    margin-top: 50vh;
    /* display: none; */
}

.notifyme {
    position: fixed;
    bottom: -20rem;
    /* top: 0; */
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
    /* margin-bottom: -20px; */
    transition: .5s;
}

.notifyme.show {
    /* padding-bottom: 0vh; */
    transition: .5s;
    bottom: 0;
}

.notifyme h5 {
    background-color: #333;
    color: #fff;
    padding: .7rem 2.5rem;
    border-radius: 2rem;
    display: inline-block;
    margin-bottom: 0;
    border: 1px solid #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.notifyme h5.error {
    background-color: #D2001A;
    border: 1px solid #fff;
    color: #fff;
}

.notifyme h5.success {
    background-color: #367E18;
    border: 1px solid #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .notifyme h5 {
        font-size: 1rem;
    }
    .notifyme.show {
        padding-top: 93vh;
        transition: .5s;
    }
}

.modal-content,
.rounded-1p5 {
    border-radius: 1.5rem !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.fixed-heading {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 9;
}

.fixed-heading .col-12 {
    padding: 1rem;
}

.fixed-heading h4 a {
    position: absolute;
    left: 12px;
    top: 10px;
    padding: 12px 15px;
}

.content-in-top {
    padding-top: 7rem;
}

.content-in-bottom {
    padding-bottom: 7rem;
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 0;
    z-index: 999;
}

.notfound {
    background-image: url(../img/notfound.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 300px;
}

.btn-icon {
    width: 35px;
    height: 35px;
    padding-top: 6px;
}

.gmnoprint a,
.gmnoprint span,
.gm-style-cc {
    display: none;
}

.gmnoprint div {
    background: none !important;
}

.myIdBtnDiv {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center !important;
    display: block;
    z-index: 99;
}

.myIdBtnDiv .myIdBtn {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    background-image: url("../img/myid.png");
    background-repeat: no-repeat;
    background-size: 50px 50px;
    background-position: center;
    border: none;
    border-radius: 50%;
    background-color: var(--secondary);
    margin-bottom: 1rem;
}

.myIdBtnDiv .myIdBtn3 {
    position: relative;
    display: inline-block;
    margin-bottom: 4 rem;
}

.myIdBtnDiv .myIdBtn2 {
    display: inline-block;
    /* position: absolute;
    right: 1rem; */
    margin-bottom: 5rem;
    width: 60px;
    height: 60px;
    background-image: url("../img/myid.png");
    background-repeat: no-repeat;
    background-size: 30px 30px;
    background-position: center;
    border: none;
    border-radius: 50%;
    background-color: var(--secondary);
}

.myIdBtnDiv .reloadmapbtn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: var(--lightblack);
    height: 60px;
    width: 60px;
    text-align: center;
    padding: 1rem;
    border-radius: 50%;
    border: none;
}


/*REGISTER*/

[data-page] {
    position: fixed;
    width: 100%;
    min-height: 100vh;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    /* transition: transform 0.2s ease-in, opacity 0.2s ease-in; */
    z-index: 10;
    left: 0;
}

[data-page="home"] {
    background-color: var(--secondary);
}

[data-page="other"] {
    background-color: var(--secondary);
}

[data-page].active {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    z-index: 100;
}

.home-floating-div {
    position: fixed;
    display: block;
    top: 6rem;
    left: 0;
    right: 0;
    z-index: 99;
}

.tabs-group {
    text-align: center;
    /* margin: 50px auto; */
    /* overflow: hidden; */
    padding: 0px 10px;
    width: 100%;
    overflow: auto;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0);
}

.tabs-group .tabss {
    /* margin-top: 50px; */
    font-size: 15px;
    padding: 0px;
    list-style: none;
    background: rgba(0, 0, 0, 0);
    /* box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1); */
    display: inline-block;
    /* border-radius: 2rem; */
    position: relative;
    width: 100%;
    overflow: auto;
    white-space: nowrap;
}

.tabs-group .tabss::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}

.tabs-group .tabss::-webkit-scrollbar-track {
    background: #ccc;
}

.tabs-group .tabss::-webkit-scrollbar-thumb {
    background: #ccc;
}

.tabs-group .tabss::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.tabs-group .tabss a {
    text-decoration: none;
    color: #333;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 2rem;
    text-transform: uppercase;
    padding: 25px 20px;
    display: inline-block;
    /* float: left; */
    position: relative;
    z-index: 1;
    transition-duration: 0.6s;
    line-height: 1rem;
    font-weight: 400;
}

.tabs-group .tabss a.active {
    color: #fff;
}

.tabs-group .tabss a .lg {
    font-size: 2rem;
    margin-bottom: 15px;
}

.tabs-group .tabss .selector {
    height: 100%;
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
    border-radius: 2rem;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(25, 26, 31, 1);
    background: -moz-linear-gradient(45deg, rgba(25, 26, 31, 1) 0%, rgba(25, 26, 31, 1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(25, 26, 31, 1) 0%, rgba(25, 26, 31, 1) 100%);
    background: linear-gradient(45deg, rgba(25, 26, 31, 1) 0%, rgba(25, 26, 31, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='rgba(25, 26, 31, 1)', endColorstr='rgba(25, 26, 31, 1)', GradientType=1);
}

.fadein-anim {
    animation: fadeIn 1s;
    -webkit-animation: fadeIn 1s;
    -moz-animation: fadeIn 1s;
    -o-animation: fadeIn 1s;
    -ms-animation: fadeIn 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.cust_radio {
    display: inline-flex;
    height: 80px;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    padding: 20px 0px 5px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
}

.cust_radio .option {
    background: var(--secondary);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    /* justify-content: space-evenly; */
    margin: 0 3px;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .75);
    transition: all 0.3s ease;
}

.cust_radio .option .dot {
    height: 20px;
    width: 20px;
    background: rgba(255, 255, 255, .75);
    border-radius: 50%;
    position: relative;
    margin-right: 8px;
}

.cust_radio .option .dot::before {
    position: absolute;
    content: "";
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.3s ease;
}

input[type="radio"] {
    display: none;
}

#option-1:checked:checked~.option-1,
#option-2:checked:checked~.option-2 {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--secondary);
}

#option-1:checked:checked~.option-1 .dot,
#option-2:checked:checked~.option-2 .dot {
    background: var(--secondary);
}

#option-1:checked:checked~.option-1 .dot::before,
#option-2:checked:checked~.option-2 .dot::before {
    opacity: 1;
    transform: scale(1);
}

.cust_radio .option span {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .75);
}

#option-1:checked:checked~.option-1 span,
#option-2:checked:checked~.option-2 span {
    color: var(--secondary);
}