html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

div.logo > img,
div.logo > a > img {
    max-width: 200px;
}

.zone-container{
    margin-bottom:30px;
}

/*#region Accordion */

.div-subaccordion {
    margin-top: 20px;
}

.accordion-footer {
    margin-top: 20px;
}

/*#endregion */

/*#region My Buttons */
.btn-donate-light {
    background: url(../Images/btn-donate-light.png) no-repeat;
    background-size: cover;
    color: #193F6B;
    border: none;
    width: 200px !important;
    height: 55px !important;
    display: flex;
    border-radius: 17px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all ease-in 0.3s;
}

.btn-donate-light:hover {
    background: url(../Images/btn-donate-light-hover.png) no-repeat;
    background-size: cover;
    border: none;
}

.btn-link i {
    display: inline-block; /* Required for transform */
    transition: transform 0.3s ease;
}

.btn-link[aria-expanded="true"] i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/*#endregion */






