/* Index */
.w3l-index-breadcrum .breadcrum-bg {
  background-size: cover;
  background-image: linear-gradient(to right, rgba(0, 33, 71, 0.8), rgba(0, 33, 71, 0.8)), url("../../assets/images/1990_Greg_Magic104_WIOF_FM.jpg");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center;
  background-attachment: fixed; }

.w3l-index-breadcrum .breadcrum-bg h2 {
  font-size: 44px;
  color: #fff;
  font-weight: 600; }

.w3l-index-breadcrum .breadcrum-bg p {
  font-size: 16px;
  color: #fff;
  margin-top: 10px; }

.w3l-index-breadcrum .breadcrum-bg p a {
  font-size: 16px;
  color: var(--primary-color); }

.w3l-index-breadcrum .breadcrum-bg p a:hover {
  text-decoration: underline;
  color: #fff; }

.py-sm-5 {
  padding-top: 3rem !important; }

.py-sm-5 {
  padding-bottom: 3rem !important; }

.py-4 {
  padding-top: 1.5rem !important; }

.py-4 {
  padding-bottom: 1.5rem !important; }

.container {
  min-width: 100% !important; }

 .py-lg-3 {
  padding-top: 1rem !important; }

 .py-lg-3 {
  padding-bottom: 1rem !important; }

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 14px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: 0.4s;
}

.accordionactive, .accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 18px;  
  color: #777;
  float: right;
}

.accordionactive:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
  font-size: 18px;
  color: #777;
  float: right;    
}

.panel {
  background-color: #ffffff;
  width: 100%;
  margin-bottom: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  border-radius: 10px;  
  width: 97%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* The Index Modal Close Button */
.indexModalClose {
  color: #183982;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.indexModalClose:hover,
.indexModalClose:focus {
  color: #da251c;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 12px;
  color: black;
  font-weight: bold;
}

.modal-body {
  padding: 2px 16px;
}

.modal-footer {
  padding: 2px 16px;
  color: black;
  text-align: left!important;
}

/* When the screen is greater than 500, set the modal */
@media screen and (min-width: 500px) {
   .modal-content {
	width: 70%;
   }
}

/* When the screen is greater than 600, set the modal */
@media screen and (min-width: 600px) {
   .modal-content {
	width: 70%;
   }
}

/* When the screen is greater than 800, set the modal */
@media screen and (min-width: 800px) {
   .modal-content {
	width: 50%;
   }
}

/* When the screen is greater than 1024, set the modal */
@media screen and (min-width: 1024px) {
   .modal-content {
	width: 40%;
   }
}
/* When the screen is greater than 1280, set the modal */
@media screen and (min-width: 1280px) {
   .modal-content {
	width: 30%;
   }
}
/* When the screen is greater than 1600, set the modal */
@media screen and (min-width: 1600px) {
   .modal-content {
	width: 30%;
   }
}  

.w3-index-show-button {margin-left: 10px; margin-bottom: 20px; border: 0; height: 40px; width: 160px; background: #fdc800; color: #002147; border-radius: 4px; transition-duration: 0.4s; font-weight: bold;}
.w3-index-show-button:hover {background-color: #757575; color: #ffffff; cursor: pointer; font-weight: bold;}

.row {
  margin-top: 0px;
}

.img-wrap {
  border: solid 1px #fff;
  padding: 10px;
}

.img-wrap{
    position: relative;
    .img-content{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        > img{
            max-width: 100%;
            max-height: 100%;
            width: 100%;
            over
        }
    }
    &.ratio-4-3{
        padding-top: 75%;
    }
    &.ratio-16-9{
        padding-top: 56.25%;
    }
    &.ratio-3-2{
        padding-top: 66.66%;
    }
    &.ratio-8-5{
        padding-top: 62.5%;
    }
