.login,
.image {
  min-height: 100vh;
}

.bg-image {
  background-image: url('../images/azn_clock_logo.png');
  background-size: cover;
  background-position: center center;
}
.mobile_code {
    width: 345px; padding-left: 73px !important;
}

.logo-image.selected {
    border: 2px solid #3cb100; /* Change border style to indicate selection */
}

#map {
    height: 400px; /* Adjust the height as needed */
    width: 100%; /* Adjust the width as needed */
}

.thumbnail_box {
width: 200px !important;
height: 170px !important;
/* width: 168px !important; */
/* height: 183px !important; */
padding-top : 10px;
}

.thumbnail_box img {
width: 100% !important;
height: 100% !important;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
border-radius: 6px;
/*    object-fit: cover;*/
object-fit: contain !important;
 border: 1px solid rgba(0, 0, 0, 0.2);
}
.error-msg {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545 !important;
}


.bg-images {
    width: 350px !important;
    height: 190px !important;
}
.nav-item .menu-title {
    font-size: 1rem !important ;
}
.nav-item .menu-icon {
    font-size: 1rem !important ; /* Adjust the font size as needed */
    margin-right: 10px; /* Adjust margin as needed */
}
.nav-item {
    margin-bottom: 10px; /* Adjust the margin bottom as needed */
    padding-bottom: 5px; /* Add some padding to create space between the border and text */
}

.nav-item:last-child {
    border-bottom: none; /* Remove border from the last menu item */
}

.iti {
    width: 100% !important;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #2196F3;
}
input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
    transform: translateX(26px);
}
