@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');
* {
    font-family: 'Cairo', 'Roboto',sans-serif;
}
html,body {
    width: 100%;
    height: 100%;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* remove the gap so it doesn't close */
}

#search_box input:-webkit-autofill,
#search_box input:-webkit-autofill:hover, 
#search_box input:-webkit-autofill:focus, 
#search_box input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 40px #f3f7f9 inset !important;
}


.navbar-nav .dropdown-menu.currency-list {
    max-height: 300px;
    overflow-y: scroll;
}

.navbar-logo {
    width: 190px;
    padding: 15px;
    transition: .2s all;
}

.nav-link {
    color: #fff;
    font-size: 1.2rem;
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0;
    margin: 0 0.3rem;
    font-weight: 600;
}

.nav-link:hover,  .nav-link:focus {
    color: var(--theme-color);
}

.dropdown-item {
    color: var(--theme-sec-color);
}

#navbar .dropdown-item:hover {
    background-color: var(--theme-color);
    color: #fff;
}

#navbar {
    background-color: transparent;
    position: fixed;
    top: 0;
    right: 0;
    margin: 0;
    width: 100%;
    padding: 0;
    z-index: 999;
}



.navbar-toggler {
    box-shadow: none !important;
    outline: 0;
    color: var(--theme-color);
    border: none;
}

.navbar_fixed {
    color: var(--theme-color);
    box-shadow: rgba(136, 132, 132, 0.12) 0px 4px 18px 0px, rgba(107, 106, 106, 0.15) 0px 7px 10px -5px;
    background-color: white !important;
}

.navbar_fixed .nav-link {
    color: var(--theme-sec-color);
}

.navbar_fixed .navbar-logo {
    width: 180px;
}

.navbar_fixed .cls-1 {
    fill:var(--theme-sec-color);
}

.form-rounded {
    border-radius: 2rem;
}

.disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
}

.round {
    
}
.round {
  position: relative;
  text-align: left;
  margin-bottom: 15px;
}

.round label {
  background-color: #fff;
  border: 2px solid var(--theme-color);
  cursor: pointer;
  height: 28px;
  right: 0;
  position: absolute;
  top: 0;
  width: 28px;
}

.round label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 7px;
  opacity: 0;
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
  width: 12px;
}

.round input[type="checkbox"] {
  visibility: hidden;
}

.round input[type="checkbox"]:checked + label {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.round input[type="checkbox"]:checked + label:after {
  opacity: 1;
}


.footer {
    background: var(--theme-sec-color);
    color: #fff;
    border-bottom: 2px solid #fff;
    direction: ltr;
}

.footer-heading {
    text-align: center;
    color: #fff;
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}

.contact-row {
    margin: 15px 0px;
    font-size: 1.1rem;
    direction: ltr;
}

.contact-row i {
    border-right: none;
    width: 30px;
    font-size: 20px;
    line-height: 1;
    text-align: center;
}

.contact-row a {
    color: #fff;
    text-decoration: none;
}

.contact-row:hover a {
    text-decoration: underline;
}

.link-row {
    margin: 10px 0px;
    font-size: 20px;
    direction: ltr;
}

.links-list {
    list-style-type:square;
}

.link-row a {
    color: #fff;
    text-decoration: none;
}

.link-row:hover a {
    text-decoration: underline;
}

.footer-bottom {
    background: var(--theme-sec-color);
    color: #fff;
}

.social-icons {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    font-size: 30px;
    transition: .2s all;
    font-size: 1.8rem;
}

.social-icons:hover {
    color: #fff;
}
.social-icons i {
    transition: 0.2s all;
}
.social-icons:hover > i {
    transform: scale(1.1);
}

.copyrights-text {
    line-height: 40px;
    font-size: 14px;
    text-align: center;
}

.localized-text {
    text-align: left;
}

.social-icons-container {
    line-height: 2.5;
}

.developer a{
    color:var(--theme-color);
}

@media only screen and (max-width: 980px) {

.dropdown:hover .dropdown-menu {
    display: none;
}

.dropdown .dropdown-menu.show {
    display: block !important;
}

}

@media only screen and (max-width: 768px) {
    
    #navbar {
        color: var(--theme-color);
        box-shadow: rgba(136, 132, 132, 0.12) 0px 4px 18px 0px, rgba(107, 106, 106, 0.15) 0px 7px 10px -5px;
        background-color: white !important;
    }
    #navbar .nav-link {
    color: var(--theme-color);
    }
    #navbar .navbar-logo .cls-1 {
        fill:var(--theme-sec-color);
    }    

    #navbar .navbar-logo {
        width: 160px;
    }
    .social-icons-container {
        text-align: center;
        margin-bottom:15px;
    }
}