@charset "UTF-8";
@import "font-awesome.min.css";
@import "bootstrap-grid.min.css";
@import "swiper.min.css";
/*#region reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

/*#endregion*/
/*#region colors*/
/*#endregion*/
/*#region mixins*/
/*#endregion*/
/*#region typo*/
p, ul, ol, img {
  margin-bottom: 24px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul, ol {
  padding-left: 20px;
}

img {
  max-width: 100%;
  height: auto;
}
img.img-block {
  display: block;
  width: 100%;
}
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

strong, b {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

iframe {
  max-width: 100%;
}

.color-blue {
  color: #6ecbd3;
}

.color-navy {
  color: #339fa8;
}

.table {
  width: 100%;
}
.table td {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
}
.table tr:last-child td {
  border: 0 none;
}

/*#endregion*/
/*#region forms*/
.btn {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  padding: 10px 24px;
  text-align: center;
  background-color: #6ecbd3;
  color: #ffffff;
  border: 0 none;
  border-radius: 24px;
  outline: 0 none;
  margin-bottom: 12px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: background-color 0.4s ease;
}
.btn.btn-block {
  display: block;
  width: 100%;
}
.btn:hover {
  background-color: #47bdc7;
}

.form-control {
  display: block;
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 20px;
  outline: 0 none;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 20px;
  background-color: #ffffff;
  background-image: none;
  margin-bottom: 12px;
  color: #000000;
  transition: border-color 0.4s ease;
}
.form-control:focus {
  border-color: #000000;
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  font-size: 14px;
  text-align: left;
  margin-bottom: 12px;
}

/*#endregion*/
body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  background-color: #f0f0f0;
}

.card {
  padding: 24px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
}
.card.form-holder {
  width: 400px;
  max-width: calc(100% - 30px);
}

.share-like {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
}
.share-like .like #btn-like {
  display: inline-block;
  border: 1px solid #ffffff;
  padding: 6px 16px;
  border-radius: 16px;
  cursor: pointer;
}
.share-like .like #btn-like:hover {
  background-color: #fff;
  color: #000;
}
.share-like .like span {
  display: inline-block;
  vertical-align: middle;
  border-left: 1px solid #fff;
  margin-left: 12px;
  padding-left: 12px;
}
.share-like .share:before {
  content: "Paylaş";
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.share-like .share a {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  vertical-align: middle;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  padding: 6px 0px;
  border: 1px solid #fff;
  color: #fff;
}
.share-like .share a:hover {
  background-color: #fff;
  color: #000;
}

.article {
  display: block;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.32s ease;
  margin-bottom: 32px;
}
.article .image-holder {
  border-radius: 20px 20px 0px 0px;
  overflow: hidden;
  position: relative;
}
.article .image-holder img {
  display: block;
  width: 100%;
  margin: 0px;
}
.article .image-holder:after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url("../gfx/logo-radioport-black.jpg") no-repeat center center;
  background-size: cover;
  position: absolute;
  right: 2px;
  bottom: 2px;
}
.article .article-content {
  min-height: 140px;
  font-size: 14px;
  font-weight: 700;
  padding: 20px;
}
.article h3 {
  font-size: 18px;
  color: #339fa8;
}
.article p {
  margin: 0px;
}
.article:hover {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.24);
}

.video-holder {
  padding-top: 56.25%;
  position: relative;
}
.video-holder video, .video-holder iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}

#header {
  padding: 10px 0px;
  z-index: 1000;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.12);
  background-color: #000;
  color: #fff;
  border-bottom: 1px solid #e0e0e0;
}
#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header #logo {
  display: block;
  width: 100px;
}
#header #logo img {
  margin: 0px;
}
#header #menu {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  padding: 4px 0px;
  margin: 0px;
  text-align: right;
}
#header #menu li {
  display: inline-block;
  margin-left: 24px;
}
#header #menu li a {
  display: block;
  padding: 16px 0px;
}
#header #menu-switch {
  cursor: pointer;
  height: 40px;
  width: 40px;
  z-index: 8000;
  display: none;
  position: relative;
}
#header #menu-switch:before, #header #menu-switch:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  background-color: #fff;
  transition: all 0.4s ease;
  border-radius: 2px;
}
#header #menu-switch:before {
  top: 10px;
}
#header #menu-switch:after {
  bottom: 10px;
}
#header #menu-switch.open:before {
  top: 18px;
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
}
#header #menu-switch.open:after {
  bottom: 18px;
  -webkit-transform: rotate(-40deg);
  -moz-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  -o-transform: rotate(-40deg);
  transform: rotate(-40deg);
}

.swiper-container#home-slider {
  border-radius: 32px;
}
.swiper-container#home-slider .swiper-slide img {
  display: block;
  width: 100%;
  margin: 0px;
}

.category-wrapper {
  padding-bottom: 40px;
}

.section-title {
  border-bottom: 1px solid #6ecbd3;
  font-size: 24px;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.section {
  padding: 36px 0px;
  position: relative;
}
.section.full-screen {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../gfx/bg-login.jpg") no-repeat center center;
  background-size: cover;
}
.section#player {
  background-color: #000000;
  color: #fff;
  padding: 80px 0px;
  font-size: 14px;
}
.section#player .content-holder {
  padding-left: 40px;
}
.section#player h1 {
  font-size: 24px;
}
.section#player h3 {
  font-size: 20px;
}
.section#player audio {
  display: block;
  width: 100%;
  margin-bottom: 24px;
}

#footer {
  padding: 40px 0px;
  color: #fff;
  background-color: #000000;
  text-align: center;
  font-size: 14px;
}
#footer .footer-logos {
  margin-bottom: 40px;
}
#footer .footer-logos img {
  display: inline-block;
  margin: 0px 40px;
  width: 100px;
  vertical-align: middle;
}
#footer .footer-logos img:first-child {
  position: relative;
  top: -10px;
}
#footer .copyright {
  padding: 16px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin: 0px;
}

#stage {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8) url("../gfx/loading.gif") no-repeat center center;
  background-size: 60px;
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 9999;
}
#stage .message-holder {
  width: 400px;
  max-width: 90%;
  padding: 20px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 0px 0px 20px 20px;
  border-top: 6px solid #6ecbd3;
}

@media (max-width: 767px) {
  #header {
    padding: 4px 0px;
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
  }
  #header .container {
    flex-wrap: wrap;
  }
  #header #logo {
    height: 60px;
    width: auto;
  }
  #header #logo img {
    height: 100%;
    width: auto;
  }
  #header #menu {
    order: 4;
    width: 100%;
    text-align: center;
    padding: 20px;
    display: none;
  }
  #header #menu li {
    display: block;
    margin: 0px;
  }
  #header #menu li a {
    padding: 12px 0px;
  }
  #header #menu-switch {
    display: block;
  }

  .share-like {
    font-size: 12px;
  }

  .section#player {
    padding: 32px 0px;
  }
  .section#player .content-holder {
    padding: 0px;
  }

  #content.has-mobile-padding {
    padding-top: 68px;
  }
}

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