html, body {
  margin: 0;
}

@media screen and (min-width: 960px) {
  html, body {
    overflow-x: hidden;
  }
}
#bannerEmission {
  text-align: center;
}
#bannerEmission img {
  max-height: 300px;
}
@media (max-width: 800px) {
  #bannerEmission img {
    width: 100%;
    object-fit: contain;
  }
}

.categorie-actu {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: black;
  background-color: white;
  border: solid 2px;
  border-radius: 20px;
  font-size: 25px;
  padding-right: 2%;
}
.categorie-actu:hover {
  text-decoration: none;
  color: black;
}
.categorie-actu__icon {
  border-radius: 18px;
  padding: 2%;
  width: 56px;
  text-align: center;
  margin-right: 2%;
}

.card-podcast {
  text-align: center;
  width: 330px;
  height: 300px;
  border-radius: 5px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  margin: 20px;
}
.card-podcast__card-content {
  height: 90%;
}
.card-podcast__card-content__card-image {
  height: 50%;
  overflow: hidden;
  border-radius: 5px 5px 0px 0px;
}
.card-podcast__card-content__card-image img {
  border-radius: 5px 5px 0px 0px;
  width: 100%;
  max-height: 150px;
  object-fit: cover;
}
.card-podcast__card-content__card-text {
  color: #636060;
  padding: 0 15px 15px;
}
.card-podcast__card-link {
  height: 10%;
}
.card-podcast__card-link a {
  border-top: 1px solid #e88a4c;
  padding-top: 15px;
  color: black;
  text-decoration: none;
}
.card-podcast__card-link a:hover {
  color: black;
  text-decoration: underline;
}

form button[type=submit], .button-color-site {
  background-color: #e88a4c;
  border: none;
}
form button[type=submit]:hover, .button-color-site:hover {
  background-color: #e26c1f;
}
form button[type=submit]:active, .button-color-site:active {
  background-color: #e88a4c;
}

#mainMenu {
  padding: 0;
}
#mainMenu .nav-item .nav-link {
  color: white;
}
#mainMenu .nav-item a:hover {
  background: white;
  color: black;
}
#mainMenu .dropdown-item a:hover {
  background: white;
  color: black;
}
#mainMenu .navbar-nav > .active > a,
#mainMenu .navbar-nav > .active > a:focus,
#mainMenu .navbar-nav > .active > a:hover {
  color: #fff;
  background-color: #d71919;
}
#mainMenu .navbar-text {
  padding: 0;
}

.openStreetMap {
  height: 50vh;
}

.sharebox {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: orangered;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Rum Raisin", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}
.sharebox > .fb-icon {
  position: absolute;
  display: block;
  height: 1.2rem;
  width: 1.2rem;
  bottom: 1rem;
  left: 0.6rem;
  background-image: url(../icons/fb-icon.svg);
  background-size: 1.2rem 1.2rem;
  background-repeat: no-repeat;
}

#bodyHomePage {
  display: flex;
}
@media (max-width: 1440px) {
  #bodyHomePage {
    flex-direction: column-reverse;
  }
}

#section-skeuds {
  width: 25%;
}
@media (max-width: 1440px) {
  #section-skeuds {
    margin-top: 3%;
    width: 100%;
  }
}

#gascogneActusHomePage h2 {
  text-align: center;
}

#mainHomePage {
  width: 90%;
  margin: auto;
}
@media (min-width: 800px) and (max-width: 1440px) {
  #mainHomePage {
    width: unset;
  }
}

#skeudLateral {
  text-align: center;
}
@media (max-width: 992px) {
  #skeudLateral {
    display: none;
  }
}

#title-page-actus {
  text-align: center;
}

#header-actu {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#header-actu img {
  margin-bottom: 2%;
}
#header-actu #list-categories-actus {
  margin-bottom: 2%;
}

#list-categories-actus {
  text-align: center;
}
#list-categories-actus .categorie-actu {
  font-size: 32px;
  transition: transform 0.2s;
}
#list-categories-actus .categorie-actu:hover {
  transform: scale(1.2);
}

#list-actus {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#list-actus .article-actu-main {
  width: 70%;
  height: auto;
  max-height: 300px;
}
@media (max-width: 992px) {
  #list-actus .article-actu-main {
    height: auto;
  }
}
@media (max-width: 450px) {
  #list-actus .article-actu-main {
    flex-direction: column;
    width: 90%;
  }
  #list-actus .article-actu-main img {
    width: 100%;
  }
  #list-actus .article-actu-main__text {
    width: 100%;
  }
}
@media (min-width: 325px) {
  #list-actus .article-actu-main {
    border: none;
  }
}
#list-actus .article-actu-main__link:hover {
  border: solid 2px #E88B4C;
}

#pagination-actu .page-item.disabled .page-link {
  color: #dee2e6;
}
#pagination-actu .page-item.active .page-link {
  color: white;
  background-color: #e88a4c;
  border-color: #e88a4c;
}
#pagination-actu .page-link {
  color: #e88a4c;
}

.article-actu-main {
  margin: 2%;
  border: solid 2px #E88B4C;
  border-radius: 10px;
  overflow: hidden;
}
.article-actu-main a {
  text-decoration: none;
}
.article-actu-main__link {
  display: flex;
  justify-content: center;
  height: 100%;
  color: black;
}
@media (min-width: 485px) {
  .article-actu-main {
    height: 167px;
  }
}
.article-actu-main img {
  width: 40%;
  object-fit: cover;
}
.article-actu-main__text {
  width: 60%;
  text-align: center;
  text-decoration: none;
  color: black;
}

.ul-replays, .ul-image {
  display: flex;
  flex-wrap: wrap;
}
.ul-replays li, .ul-image li {
  list-style-type: none;
  max-width: 480px;
  /*margin-left: 20px;*/
  margin-right: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

#ul-matinale h3 {
  color: black;
  text-align: center;
}

.img-emission {
  width: 360px;
}

.linkPodcastEmission {
  color: orangered;
}
.linkPodcastEmission:hover {
  color: orangered;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .img-emission {
    width: 320px;
  }
}
@media screen and (min-width: 992px) {
  .img-emission {
    width: 450px;
  }
}
#sectionCardEmission {
  margin-top: 50px;
}

.card-Emission {
  position: relative;
  text-align: center;
  width: 330px;
  min-height: 400px;
  border-radius: 5px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-Emission__title {
  max-height: 30%;
  color: #D14905;
}
.card-Emission__img {
  width: 100%;
  height: 30%;
  object-fit: cover;
}
.card-Emission__img--full {
  max-height: 65%;
  width: 100%;
  object-fit: cover;
}
.card-Emission hr {
  width: 80%;
  height: 3px;
  background: #D14905;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2%;
}
.card-Emission__text {
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-Emission__text a {
  color: black;
  text-decoration: none;
}
.card-Emission__text a:hover {
  color: #e88a4c;
}
.card-Emission audio {
  height: 40px;
  padding: 2%;
  box-sizing: content-box;
}

.player-wrapper-index {
  width: 50%;
  margin: auto;
}
@media (max-width: 1140px) {
  .player-wrapper-index {
    width: 80%;
  }
}

#ButtonStreaming-text {
  text-align: center;
}
#ButtonStreaming-text a {
  color: orangered;
}
#ButtonStreaming-text a:hover {
  color: white;
  background: #e88a4c;
  padding-left: 1%;
  padding-right: 1%;
  padding-bottom: 1%;
  padding-top: 1%;
}

#index-replays {
  text-align: center;
}
#index-replays .mainPodcasts {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #e8e8e8;
}
#index-replays .cardsPodcast {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

#playerStream {
  width: 60%;
  background: black;
}

.player-wrapper-stream {
  margin: 0 auto;
  width: 1280px;
}

.metaStream {
  color: black;
  margin-top: 5%;
  display: flex;
  justify-content: space-around;
}
.metaStream > section {
  width: 100%;
}
.metaStream > hr {
  color: grey;
  border: solid;
  width: 60%;
  visibility: hidden;
}
.metaStream__h3, .metaStream__h4 {
  font-size: 1.25rem;
}
.metaStream__h3--main, .metaStream__h4--main {
  font-size: 1.5rem;
}
.metaStream h3 {
  text-align: center;
}
.metaStream__content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  margin: auto;
}
.metaStream__content img {
  margin-right: 7%;
}
.metaStream__content--main {
  width: 100%;
}

.metaPartenaire {
  margin-top: 5%;
  border: solid 1px;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.metaPartenaire h2 {
  text-align: center;
}
.metaPartenaire__img {
  height: 80%;
}

@media screen and (max-width: 576px) {
  #playerStream {
    width: 80%;
  }
  .metaStream {
    flex-direction: column;
  }
  .metaStream > hr {
    visibility: visible;
  }
  .metaStream > section {
    width: 100%;
  }
  .metaPartenaire {
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */
