/*
==================================================
#BASIC TYPOGRAPHY
#HEADER
#NEW ALBUM RELEASE
#ON TOUR
#GALLERY
#VIDEO
#NEWS
#TESTIMONIALS
#CONTACT US
#FOOTER
#MUSIC DISCOGRAPHY
#MUSIC SINGLE ALBUM
#ALL EVENTS
#SINGLE EVENTS
#VIDEOS
#SINGLE VIDEO
#GALLERY PHOTOGALLERY
#GALLERY SINGLE GALLERY
#BLOG GRID
#BLOG SINGLE POST
#BLOG STANDARD
#BLOG MANSORY
#CONTACT US
#404 PAGE
#SEARCH RESULT
#SHOP
#CHECKOUT
#SINGLE PRODUCT
#RESPONSIVE
#FOR MOZILA FIREFOX
*/

/*--------------------*/

/* BASIC TYPOGRAPHY */

/*--------------------*/

/***** Preloader *****/

#preloader {
  width: 100%;
  height: 100%;
  background-color: rgb(29, 29, 29);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

@font-face {
  font-family: OpenSans-Bold;
  src: url(../fonts/OpenSans-Bold.ttf);
}

body,
html {
  padding: 0px;
  margin: 0px;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: rgb(27, 27, 27);
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

a:focus,
a:hover {
  outline: none;
  text-decoration: none;
}

.row {
  margin: 0;
}

.overly {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.85);
  opacity: 0.7;
}

.section {
  position: relative;
  z-index: 88;
  max-width: 1645px;
  width: 90%;
  margin: auto;
  float: none;
}

.title {
  text-align: center;
  padding-top: 105px;
  padding-bottom: 105px;
}

.title h1 {
  font-family: Open Sans;
  font-size: 40px;
  font-weight: 700;
  /* color: #FF009B; */
  color: #FF009B;
  margin-bottom: 10px;
  line-height: 40px;
}

.title p {
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 8px;
  color: #ffffff;
  margin-bottom: 0px;
}

/*--------------------*/

/* HEADER */

/*--------------------*/

#header .nav-menu,
#header .search-bar {
  position: fixed;
  top: 0;
  padding-top: 110px;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: #000000;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#header .nav-menu.active,
#header .search-bar.active {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}

#header .nav-menu .overly,
#header .search-bar .overly {
  background-image: none;
}

.nav-menu .section {
  z-index: 991;
}

#header .nav > li:first-child a {
  padding-top: 0px;
}

#header .nav {
  font-family: "Open Sans";
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0px;
  bottom: 0;
  margin: auto;
  float: none;
  left: 0;
  right: 0;
}

#header .nav > li {
  position: relative;
  width: 206px;
}

#header ul.nav > li > a {
  font-size: 40px;
  font-weight: 400;
  color: #ffffff;
  padding-top: 3px;
  padding-bottom: 0;
  padding-left: 30px;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#header ul.nav > li > a:hover {
  color: #FF009B;
}

#header .nav-menu.nav-demo-2 .nav > li > a.active {
  color: #FF009B;
}

#header .nav > li ul.child-item {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: none;
  position: absolute;
  left: 200px;
  top: 20%;
  padding: 15px 25px 15px 25px;
  background-color: rgb(28, 28, 28);
}

#header .nav > li ul.child-item:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 20px solid #1c1c1c;
  border-bottom: 10px solid transparent;
  position: absolute;
  top: 10px;
  left: -17px;
}

#header .nav > li:hover ul.child-item {
  display: block;
}

#header .nav > li ul.child-item > li a {
  font-size: 24px;
  font-weight: 300;
  color: #828282;
  padding: 0;
  line-height: 32px;
  text-transform: capitalize;
}

#header .nav > li ul.child-item > li a:hover {
  color: #FF009B;
}

#header .search-bar form {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 710px;
  width: 95%;
}

#header .search-bar form input {
  height: 80px;
  width: 100%;
  margin-right: 0 !important;
  background-color: rgba(37, 38, 43, 0.7);
  border: none;
  border-radius: 5px;
  padding-left: 30px;
  font-size: 20px;
  text-transform: capitalize;
}

#header .search-bar form button {
  position: absolute;
  right: 35px;
  border: none;
  padding: 0;
  margin-top: 2px !important;
  color: #fff;
}

#header .search-bar form button svg path {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#header .search-bar form button:hover {
  background-color: transparent;
  border-color: transparent;
}

#header .search-bar form button:hover svg path {
  fill: #FF009B;
}

#header .search-bar form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "Open Sans";
  color: #999;
  font-size: 20px;
}

#header .search-bar form input::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "Open Sans";
  color: #999;
  font-size: 20px;
}

#header .search-bar form input:-ms-input-placeholder {
  /* IE 10+ */
  font-family: "Open Sans";
  color: #999;
  font-size: 20px;
}

#header .search-bar form input:-moz-placeholder {
  /* Firefox 18- */
  font-family: "Oswald";
  color: #999;
  font-size: 20px;
}

#header .search-bar form input:active,
#header .search-bar form input:focus {
  border: none;
  outline: none;
  box-shadow: none;
  color: #fff;
}

#header .search-bar form button:active,
#header .search-bar form button:focus {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  border-color: transparent;
}

#header {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

#header .bg_image {
  background-position-y: 0px;
}

.bg_image {
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}

.logo {
  max-width: 360px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header-continer.active .logo {
  padding: 0px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.logo img {
  width: 100%;
}

.mobile-logo {
  display: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mobile-logo img {
  width: 100%;
}

.header-continer.active .mobile-logo {
  padding-right: 25px;
}

body.home .header-continer,
body.home .header-continer.active {
  background-color: rgb(15, 22, 23);
}

.header-continer {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgb(15, 22, 23);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header-continer.active {
  padding: 0px;
  background-color: rgb(15, 22, 23);
}

.header-continer > .section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

.header_items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header_items > div {
  cursor: pointer;
  position: relative;
  width: 24px;
  text-align: center;
}
.menu_icon i{
  color: #FF009B !important;
}
.menu_icon svg {
  display: none;
}

.search_icon svg.close-search {
  display: none;
}

.menu_icon.active i.fa-bars {
  display: none;
}

.menu_icon.active svg {
  display: block;
}

.search_icon.active svg.close-search {
  display: block;
}

.search_icon.active svg.open-search {
  display: none;
}

.header_items > div:hover i {
  color: #FF009B;
}

.card_count {
  width: 20px;
  height: 20px;
  font-size: 11px;
  position: absolute;
  top: -5px;
  right: -9px;
  color: #fff;
  background-color: #FF009B;
  padding: 3px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header_items i {
  color: #fff;
  font-size: 24px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.home .header_items i {
  color: #fff;
}

#header .header-continer.active .header_items i {
  color: #fff;
}

#header .header-continer.active .header_items > div:hover i {
  color: #FF009B;
}

.header_items svg {
  width: 21px;
}

.header_items svg.open-search {
  height: 25px;
}

.header_items svg.close-search {
  height: 20px;
}

.header_items svg path {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.home .header_items svg path {
  fill: #fff;
}

.header_items svg path {
  fill: #fff;
}

.header_items svg:hover path {
  fill: #FF009B;
}

#header .header-continer.active .header_items svg path {
  fill: #fff;
}

#header .header-continer.active .header_items svg:hover path {
  fill: #FF009B;
}

.search_icon,
.shop_icon {
  margin-right: 20px;
}

.big-title {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.big-title img {
  width: 100%;
}

.big-title h1 {
  font-size: 16vw;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}

.header-title h1 {
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 55px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.section_1_title {
  position: absolute;
  height: 100%;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.header-title {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  z-index: 9;
}

.header-title h1 span {
  color: #FF009B;
}

/*--------------------*/

/* HEADER END */

/*--------------------*/

/* =================================================  */

/* HOME PAGE CSS */

/* =================================================  */

/*--------------------*/

/* NEW ALBUM RELEASE */

/*--------------------*/

#album-release {
  position: relative;
  background-image: -webkit-linear-gradient(
    bottom,
    rgb(100, 21, 34),
    rgba(37, 22, 26, 0)
  );
  background-image: -moz-linear-gradient(
    bottom,
    rgb(100, 21, 34),
    rgba(37, 22, 26, 0)
  );
  background-image: -o-linear-gradient(
    bottom,
    rgb(100, 21, 34),
    rgba(37, 22, 26, 0)
  );
  background-image: linear-gradient(
    0deg,
    rgb(100, 21, 34),
    rgba(37, 22, 26, 0)
  );
  overflow: hidden;
  padding-bottom: 97px;
}

.section_bg_image {
  position: absolute;
  z-index: 7;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}

.sec_2_content {
  font-family: "Open Sans";
  line-height: 30px;
}

.sec_2_content * {
  font-size: 18px;
  line-height: 30px;
  color: #999;
  margin-bottom: 0px;
}

.sec_2_content .cta a {
  letter-spacing: 1px;
}

#album-release .col {
  min-height: auto;
  padding: 0;
}

#album-release .buy {
  margin-top: 49px;
}

#album-release .section > .row {
  margin: 0px;
}

.disc_cover img {
  width: 58%;
  top: -5%;
}

.disc {
  position: relative;
  left: 15px;
  z-index: 99;
}

.cd {
  position: absolute;
  left: 37%;
  top: 2% !important;
  width: 53% !important;
  z-index: 9;
  -webkit-animation: spin 15s linear infinite;
  -moz-animation: spin 15s linear infinite;
  animation: spin 15s linear infinite;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.cta {
  margin-top: 30px;
}

.cta a {
  font-family: "Oswald";
  font-size: 15px;
  color: #fff;
  padding: 24px 13px 24px 20px;
  border: 1px solid #fff;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.cta a:hover {
  border-color: #FF009B;
  background-color: #FF009B;
  color: rgb(255, 255, 255);
}

#album-release .cta {
  margin-top: 58px;
}

#album-release .cta a {
  color: #fff;
  border-color: #fff;
  letter-spacing: 1px;
}

#album-release .cta a:hover {
  border-color: #FF009B;
  color: rgb(255, 255, 255);
}

.j_c {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 60px;
}

.j_c .mp3_1 .plyr__controls {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.j_c .mp3_3 .plyr__controls {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/*--------------------*/

/* NEW ALBUM RELEASE END */

/*--------------------*/

/*--------------------*/

/* ON TOUR */

/*--------------------*/

.home #on-tour {
  background-color: #000000;
}

#on-tour {
  position: relative;
  padding-bottom: 105px;
  overflow: hidden;
}

#on-tour .section_bg_image {
  background-attachment: fixed;
  background-size: auto;
  background-position: 50%;
  opacity: 0.7;
}

.tickets {
  padding: 0px;
}

.ticket {
  margin: 0px;
  margin-top: 1px;
}

.ticket * {
  color: #999;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.row.ticket:after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-image: url(../images/doted.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}

.tickets > div.ticket:first-child > div {
  padding-top: 0px;
}

.row.ticket > div {
  padding: 40px 20px;
}

.buy {
  text-align: right;
}

.day_num {
  width: 167px;
  height: 63px;
  border-right: 5px solid #ffffff;
  line-height: 33px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.day_num span {
  font-family: "Oswald";
  font-size: 68px;
  color: #fff;
}

.day_num div {
  margin-left: 7px;
}

.day_num div p {
  font-family: "Oswald";
  font-size: 30px;
  margin: 0;
  text-transform: uppercase;
}

.row.ticket > div > div {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

.day {
  float: left;
}

.name {
  float: left;
  padding-left: 30px;
}

.name p {
  font-family: "Oswald";
  font-size: 40px;
  margin: 0;
  font-weight: 300;
  color: #fff;
}

.name span:first-child {
  margin-right: 30px;
}

.buy a {
  font-family: "Oswald";
  font-size: 25px;
  color: #f8f8f8;
  text-transform: uppercase;
  padding: 11px 33px;
  border: 1px solid #fff;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.row.ticket:hover * {
  color: #fff;
}

.row.ticket:hover .day_num {
  border-color: #FF009B;
}

.row.ticket:hover .day_num * {
  color: rgb(255, 255, 255);
}

.row.ticket:hover .buy a {
  background-color: #FF009B;
  border-color: #FF009B;
  color: #fff;
}

.buy a:hover {
  text-decoration: none;
  color: #fff;
}

.buy p {
  font-family: "Special Elite";
  font-size: 30px;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}

/*--------------------*/

/* ON TOUR */

/*--------------------*/

/*--------------------*/

/* GALLERY */

/*--------------------*/

#gallery {
  background-color: rgb(27, 27, 27);
  padding-bottom: 119px;
}

#gallery .row.title {
  margin-bottom: 65px;
}

#gallery .row,
#gallery .col {
  padding: 0px;
  margin: 0px;
}

#image-gallery > div.row {
  width: 100%;
}

#gallery .row > div {
  padding: 0px;
}

#image-gallery .grid-item {
  width: 25%;
  background-image: -webkit-linear-gradient(
    230deg,
    rgb(100, 21, 34),
    rgb(37, 22, 26)
  );
  background-image: -moz-linear-gradient(
    230deg,
    rgb(100, 21, 34),
    rgb(37, 22, 26)
  );
  background-image: -o-linear-gradient(
    230deg,
    rgb(100, 21, 34),
    rgb(37, 22, 26)
  );
  background-image: linear-gradient(-140deg, rgb(100, 21, 34), rgb(37, 22, 26));
}

#image-gallery .grid-item:hover img {
  opacity: 0.5;
}

#image-gallery .grid > div.grid-item:nth-child(2) {
  width: 50%;
  height: 965px;
}

#image-gallery .grid > div.grid-item:last-child {
  height: 425px !important;
}

#image-gallery .grid > div.grid-item:nth-child(2n + 1) {
  height: 540px;
}

#image-gallery .grid > div.grid-item:nth-child(3n + 1) {
  height: 965px;
}

#image-gallery .grid-item a.img_link,
#image-gallery .grid-item a.img_link img {
  width: 100%;
}

#image-gallery .grid-sizer {
  width: 25%;
}

#gallery .music-banner {
  background-image: -webkit-linear-gradient(
    230deg,
    rgb(100, 21, 34),
    rgb(37, 22, 26)
  );
  background-image: -moz-linear-gradient(
    230deg,
    rgb(100, 21, 34),
    rgb(37, 22, 26)
  );
  background-image: -o-linear-gradient(
    230deg,
    rgb(100, 21, 34),
    rgb(37, 22, 26)
  );
  background-image: linear-gradient(-140deg, rgb(100, 21, 34), rgb(37, 22, 26));
}

#gallery .music-banner:hover a.img_link img {
  opacity: 0.5;
}

.img_gallery {
  position: relative;
  overflow: hidden;
}

#popup-container {
  opacity: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
  background: rgba(15, 15, 15, 0.9);
}

#slides-container {
  position: relative;
  width: 90%;
  height: 100%;
  margin: auto;
}

.popup-image {
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: auto;
}

.popup_block {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 70%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  overflow: hidden;
}

.popup_block:hover .popup_left {
  left: -105px;
}

.popup_block:hover .popup_right {
  right: -105px;
}

.popup_arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 130px;
  width: 180px;
  background-color: rgba(191, 21, 45, 0.9);
  border-radius: 70%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.popup_left {
  left: -200px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 30px;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.popup_right {
  right: -200px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-left: 30px;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.popup_arrow i {
  font-size: 35px;
  color: #fff;
}

#popup-container ul {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#popup-container ul li {
  width: 13px;
  height: 13px;
  margin: 0px 3px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -o-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-transition: all 0.2s ease-out 0s;
}

#popup-container ul li:hover {
  -webkit-transform: scale(1.3, 1.3);
  -moz-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  -o-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
  border: none;
  background-color: #FF009B;
}

#popup-container ul li.active {
  -webkit-transform: scale(1.3, 1.3);
  -moz-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  -o-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
  border: none;
  background-color: #FF009B;
}

.banner_2 {
  overflow: hidden;
  padding-right: 0px;
}

a.popup-image img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.banner_1 {
  height: 100%;
  overflow: hidden;
  padding-left: 0;
}

a.img_link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#single-gallery a.img_link {
  width: 100%;
}

a.img_link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

a.anim_border {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

a.anim_border::before {
  border-top: 1px solid rgb(255, 255, 255);
  border-bottom: 1px solid rgb(255, 255, 255);
  bottom: 20px;
  content: "";
  left: 10px;
  position: absolute;
  right: 10px;
  top: 20px;
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
  z-index: 9;
}

a.anim_border::after {
  border-left: 1px solid rgb(255, 255, 255);
  border-right: 1px solid rgb(255, 255, 255);
  bottom: 10px;
  content: "";
  left: 20px;
  position: absolute;
  right: 20px;
  top: 10px;
  transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
  z-index: 9;
}

.anim_border:hover:before,
.anim_border:hover:after {
  transform: scale(1);
  -webkit-transform: scale(1);
}

#gallery .cta {
  text-align: center;
  margin-top: 119px;
}

#gallery .cta a {
  letter-spacing: 7px;
  text-transform: uppercase;
}

#gallery .buy a,
#album-release .buy a {
  color: #fff;
}

#album-release .buy a {
  padding: 15px;
}

#gallery .banner_1 > div:first-child {
  height: 25%;
  padding-bottom: 15px;
}

#gallery .banner_1 > div:last-child {
  height: 25%;
  padding-top: 15px;
}

#gallery .banner_1 > div:nth-child(2) {
  height: 50%;
  padding: 15px 0px;
}

#gallery .banner_2 > div:first-child {
  height: 50%;
  padding-bottom: 15px;
}

#gallery .banner_2 > div:last-child {
  height: 25%;
  padding-top: 15px;
}

#gallery .banner_2 > div:nth-child(2) {
  height: 25%;
  padding: 15px 0px;
}

#gallery .banner_1 > div:first-child > div:first-child {
  margin-right: 15px;
}

#gallery .banner_1 > div:first-child > div:last-child {
  margin-left: 15px;
}

#gallery .banner_1 > div:last-child > div:first-child {
  margin-right: 15px;
}

#gallery .banner_1 > div:last-child > div:last-child {
  margin-left: 15px;
}

#gallery .banner_1 > div > div,
#gallery .banner_2 > div > div {
  height: 100%;
}

/*--------------------*/

/* GALLERY END*/

/*--------------------*/

/*--------------------*/

/* VIDEO */

/*--------------------*/

#video {
  position: relative;
  padding-bottom: 105px;
}

#video .embed-responsive {
  max-width: 1360px;
  width: 90%;
  margin: auto;
  border: 20px solid #2a2a2a;
  border-radius: 70px;
  -webkit-box-shadow: 0 0 10px 1px #131313;
  box-shadow: 0 0 10px 1px #131313;
}

.video .youtube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.video .embed-responsive {
  height: 100%;
}

.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/*--------------------*/

/* VIDEO END*/

/*--------------------*/

/*--------------------*/

/* NEWS */

/*--------------------*/

#news {
  position: relative;
  background-color: rgb(27, 27, 27);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  padding-bottom: 105px;
  overflow: hidden;
}

#news .section_bg_image {
  background-attachment: fixed;
  background-size: cover;
  opacity: 1;
  background-position: 0%;
}

.news > div.row {
  margin: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news > div > div {
  position: relative;
  max-width: 520px;
  width: 95%;
  padding: 0;
  margin: 0px 10px;
}

.news_content {
  position: relative;
  z-index: 10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  text-align: center;
  padding: 75px 20px 85px;
}

.news .cta {
  width: auto;
  margin-top: 105px;
}

.news .cta a {
  border-color: #FF009B;
  text-transform: uppercase;
  letter-spacing: 7px;
}

.news_content h2 {
  font-family: "Oswald";
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.news_content .day_num {
  width: auto;
  border: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.news_content .day_num * {
  color: #FF009B;
  margin: 0;
}

.news_content .day_num div {
  border-right: 3px solid #FF009B;
  padding-right: 10px;
  margin-right: 10px;
  margin-left: 4px;
  line-height: 14px;
}

.n_c {
  margin-top: 20px;
  margin-bottom: 40px;
}

.n_c * {
  font-family: "Open Sans";
  font-size: 18px;
  text-align: left;
  letter-spacing: 1px;
  color: #cbcbcb;
  line-height: 30px;
  margin: 0;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.news_content_3 {
  background-color: rgb(18, 18, 18);
}

.news_content .buy {
  opacity: 0;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.news .bg_image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  margin-top: 0;
  background-position: 50%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.news > div > div:hover .bg_image {
  -webkit-filter: initial;
  filter: initial;
}

.news .overly {
  z-index: 9;
  background: rgba(0, 0, 0, 0.6509803921568628);
}

.news_content:hover .buy {
  opacity: 1;
}

.news_content:hover h2 {
  color: #FF009B;
}

.news_content:hover .cta a {
  background-color: #FF009B;
  border-color: #FF009B;
  color: #fff;
}

.news_content:hover .day_num span {
  color: rgb(255, 255, 255);
}

.news_content:hover .day_num div p {
  color: rgb(255, 255, 255);
}

.news_content .day_num div p {
  font-size: 14px;
  color: #FF009B;
  text-align: left;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.news_content .day_num span {
  font-size: 26px;
  color: #FF009B;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.news_content .day_num div {
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.news_content:hover .day_num div {
  border-color: #fff;
}

.news_content .day_num > p {
  font-family: "Open Sans";
  font-size: 14px;
  font-style: italic;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.news_content:hover .day_num > p {
  color: #fff;
}

.news_content:hover .n_c * {
  color: #fff;
}

.news_content .buy a {
  color: #fff;
  padding: 22px 46px;
}

/*--------------------*/

/* NEWS END */

/*--------------------*/

/*--------------------*/

/* TESTIMONIALS */

/*--------------------*/

#testimonials {
  position: relative;
  background-color: rgb(245, 248, 250);
  padding-bottom: 89px;
}

.flex-direction-nav {
  display: none;
}

.flex-control-nav {
  text-align: center;
  margin-top: 60px;
  padding: 0;
}

.flex-control-nav li {
  display: inline-block;
}

.flex-control-nav li a {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: transparent;
  text-indent: -9999px;
  margin: 0px 5px;
  font-size: 0;
  color: transparent;
}

.flex-control-nav li a.flex-active {
  background-color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}

.slide_img {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid transparent;
  margin: auto auto 35px auto;
  overflow: hidden;
}

.slide_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 0px;
  object-position: 0px;
}

.carousel_content {
  font-family: "Open Sans";
  position: relative;
  max-width: 770px;
  width: 95%;
  margin: auto;
  text-align: center;
}

.carousel_content * {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-style: italic;
}

.carousel_content:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  background-image: url(../images/quote_11.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  top: 6%;
  left: -10%;
}

.carousel_content:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  background-image: url(../images/quote_2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  top: 6%;
  right: -10%;
}

/*--------------------*/

/* TESTIMONIALS END */

/*--------------------*/

/*--------------------*/

/* CONTACT US */

/*--------------------*/

#contact-us {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  padding-bottom: 105px;
}

#contact-us .overly {
  background-color: rgba(15, 15, 15, 0.85);
  opacity: 1;
  background-image: none;
}

.form form input {
  height: 55px;
  color: #fff;
  text-transform: capitalize;
}

.form form textarea {
  height: 295px;
  color: #fff;
  text-transform: capitalize;
}

.form form input,
.form form textarea {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0px;
  border: 1px solid rgba(255, 255, 255, 0);
}

.form form input:focus,
.form form textarea:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #bf152d;
  outline: 0;
  box-shadow: none;
  color: #fff;
}

.form .row {
  margin-right: -15px;
  margin-left: -15px;
}

.form .fild_1 {
  margin-bottom: 20px;
}

.form .btn-primary {
  font-family: "Oswald";
  color: #fff;
  background-color: transparent;
  border-color: #FF009B;
  padding: 20px 38px 22px;
  font-size: 15px;
  font-weight: 400;
  margin-top: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form .btn-primary:focus,
.form .btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0;
}

.form .btn-primary:hover {
  background-color: #FF009B;
  border-color: #FF009B;
}

.form .btn-primary:active {
  background-color: #FF009B !important;
  border-color: #FF009B !important;
}

.form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "Open Sans";
  color: #999;
  font-size: 14px;
  text-transform: capitalize;
}

.form input::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "Open Sans";
  color: #999;
  font-size: 14px;
  text-transform: capitalize;
}

.form input:-ms-input-placeholder {
  /* IE 10+ */
  font-family: "Open Sans";
  color: #999;
  font-size: 14px;
  text-transform: capitalize;
}

.form input:-moz-placeholder {
  /* Firefox 18- */
  font-family: "Oswald";
  color: #999;
  font-size: 14px;
  text-transform: capitalize;
}

.form textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "Open Sans";
  color: #999;
  font-size: 14px;
  text-transform: capitalize;
  padding-top: 245px;
}

.form textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "Open Sans";
  color: #999;
  font-size: 14px;
  text-transform: capitalize;
  padding-top: 245px;
}

.form textarea:-ms-input-placeholder {
  /* IE 10+ */
  font-family: "Open Sans";
  font-style: italic;
  color: #999;
  font-size: 14px;
  text-transform: capitalize;
  padding-top: 245px;
}

.form textarea:-moz-placeholder {
  /* Firefox 18- */
  font-family: "Open Sans";
  color: #999;
  font-size: 14px;
  text-transform: capitalize;
  padding-top: 245px;
}

/*--------------------*/

/* CONTACT US END */

/*--------------------*/

/*--------------------*/

/* FOOTER */

/*--------------------*/

#footer {
  position: relative;
  background-color: rgb(2, 2, 2);
}

#footer .bg_image {
  margin-top: 0px;
  position: absolute;
  background-position: 0% 20%;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /></filter></svg>#filter');
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.footer-overly {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.82);
}

.footer {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer > div {
  max-width: 340px;
  width: 95%;
  padding: 0;
}

.f-content {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}

.footer > div:last-child {
  padding-left: 45px;
}

.footer h2 {
  font-family: "Oswald";
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer * {
  color: #999;
}

.footer .main_p {
  color: #FF009B;
}

.footer > div:first-child p {
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 0px;
}

.footer .day_num {
  display: block;
  border: none;
  width: auto;
  height: auto;
  margin-bottom: 10px;
}

.footer .day_num > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer .day_num span {
  width: 15px;
  font-family: "Oswald";
  font-size: 24px;
  margin-right: 5px;
  color: #FF009B;
}

.footer .day_num div {
  line-height: 14px;
  margin-right: 20px;
}

.footer .day_num div p {
  font-family: "Oswald";
  font-size: 14px;
}

.footer .day_num > a > p {
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 30px;
  margin: 0px;
}

.footer_logo img {
  width: 140px;
}

.footer_logo {
  margin-bottom: 20px;
}

.info p {
  font-family: "Open Sans";
  font-size: 14px;
  line-height: 30px;
  margin: 0;
}

.info p a {
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

a:focus,
a:hover {
  color: rgb(255, 255, 255);
}

.info p:hover a {
  color: #FF009B;
  text-decoration: none;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.folow {
  margin-top: 35px;
}

.folow ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.folow ul li {
  display: inline-block;
}

.folow ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 21px;
  background-color: rgb(46, 46, 46);
  margin-right: 5px;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.folow ul li a i {
  color: #7d7d7d;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.folow ul li a:hover {
  background-color: #FF009B;
  text-decoration: none;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.folow ul li a:hover i {
  color: #fff;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.footer .day_num * {
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.footer .day_num:hover * {
  color: #FF009B;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.copyright {
  text-align: center;
  padding: 25px 0px;
  border-top: 1px solid #181818;
}

.copyright * {
  font-family: "Open Sans";
  font-size: 12px;
  color: #a4a4a4;
}

.f_1 {
  margin: 0;
  position: relative;
  z-index: 11;
}

.f_1 .col {
  padding: 0;
}

/*--------------------*/

/* FOOTER END*/

/*--------------------*/

/* =================================================  */

/* HOME PAGE END */

/* =================================================  */

/* =================================================  */

/* MUSIC DISCOGRAPHY */

/* =================================================  */

#page-title {
  position: relative;
  margin-top: 140px;
  margin-bottom: 70px;
}

.title-image img {
  width: 100%;
  opacity: 0.1;
}

.global-title {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.global-title h1 {
  font-family: "Oswald";
  font-weight: 700;
  font-size: 85px;
  color: #FF009B;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 0;
}

#discography {
  margin-bottom: 40px;
  overflow: hidden;
}

#discography > .section {
  padding: 0px 50px;
}

#discography .discography-line {
  width: 100%;
  position: relative;
  padding: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#discography .discography-line > div {
  padding: 0;
}

.discography-line > div:hover .disc-image {
  -webkit-transform: translateX(53%);
  -moz-transform: translateX(53%);
  -ms-transform: translateX(53%);
  -o-transform: translateX(53%);
  transform: translateX(53%);
}

.disc-image {
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 1;
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
  -o-transition: all 0.35s ease-out 0s;
  -moz-transition: all 0.35s ease-out 0s;
  transition: all 0.35s ease-out 0s;
  -webkit-transition: all 0.35s ease-out 0s;
}

.disc-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.discography_banner {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.music-discography #discography .section > div {
  margin-right: -5px;
  margin-left: -5px;
}

.music-banner-image {
  width: 77%;
  overflow: hidden;
  background-image: -webkit-linear-gradient(
    230deg,
    rgb(100, 21, 34),
    rgb(37, 22, 26)
  );
  background-image: -moz-linear-gradient(
    230deg,
    rgb(100, 21, 34),
    rgb(37, 22, 26)
  );
  background-image: -o-linear-gradient(
    230deg,
    rgb(100, 21, 34),
    rgb(37, 22, 26)
  );
  background-image: linear-gradient(-140deg, rgb(100, 21, 34), rgb(37, 22, 26));
}

.discography-line > div:nth-child(2) .music-banner-image {
  margin: auto;
}

.discography-line > div:nth-child(2) .disc-image {
  left: 12%;
}

.discography-line > div:nth-child(2) .music-banner-text {
  margin: auto;
}

.discography-line > div:last-child .music-banner-image {
  margin: auto 0 auto auto;
}

.discography-line > div:last-child .music-banner-text {
  margin: auto 0 auto auto;
}

.discography-line > div:last-child .disc-image {
  left: 23%;
}

.music-banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: -webkit-calc(100% + 50px) !important;
  width: -moz-calc(100% + 50px) !important;
  width: calc(100% + 50px) !important;
  max-width: -webkit-calc(100% + 50px) !important;
  max-width: -moz-calc(100% + 50px) !important;
  max-width: calc(100% + 50px) !important;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, -o-transform 0.35s;
  -moz-transition: opacity 0.35s, transform 0.35s, -moz-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s,
    -moz-transform 0.35s, -o-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
  -webkit-transform: translate3d(-40px, 0, 0);
  -moz-transform: translate3d(-40px, 0, 0);
  transform: translate3d(-40px, 0, 0);
}

.discography_banner:hover .music-banner-image img {
  opacity: 0.5;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0.05s;
  -moz-transition-delay: 0.05s;
  -o-transition-delay: 0.05s;
  transition-delay: 0.05s;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
}

.discography_banner:hover .music-banner-text h2 {
  color: #bf152d;
}

.music-banner-text {
  width: 77%;
  text-align: center;
  padding: 0px 0px 50px;
}

.music-banner-text * {
  color: #fff;
}

.music-banner-text h2 {
  font-family: "Oswald";
  text-transform: uppercase;
  font-weight: 400;
  font-size: 40px;
  line-height: 45px;
  margin-top: 10px;
  margin-bottom: 15px;
  letter-spacing: 5px;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
}

.music-banner-text p {
  font-weight: 300;
  font-size: 28px;
  color: #999;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 0px;
  letter-spacing: 1px;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
}

.music-banner-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

/* =================================================  */

/* MUSIC DISCOGRAPHY END */

/* =================================================  */

/* =================================================  */

/* MUSIC SINGLE ALBUM */

/* =================================================  */

#video-post .youtube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

#video-post .youtube img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#discography-post {
  position: relative;
  margin-top: 70px;
  padding-top: 70px;
  overflow: hidden;
}

#discography-post .overly {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgb(100, 21, 34)),
    to(rgba(37, 22, 26, 0))
  );
  background-image: -webkit-linear-gradient(
    bottom,
    rgb(100, 21, 34),
    rgba(37, 22, 26, 0)
  );
  background-image: -moz-linear-gradient(
    bottom,
    rgb(100, 21, 34),
    rgba(37, 22, 26, 0)
  );
  background-image: -o-linear-gradient(
    bottom,
    rgb(100, 21, 34),
    rgba(37, 22, 26, 0)
  );
  background-image: linear-gradient(
    0deg,
    rgb(100, 21, 34),
    rgba(37, 22, 26, 0)
  );
}

#discography-post .global-title {
  padding: 85px 0px 165px;
}

#discography-post .global-title h1 {
  color: #fff;
}

.discography_banner_background_image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.discography_banner_background_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#discography-post .section > .row {
  margin: 0px;
}

#discography-post .col {
  padding: 0px;
}

#discography-post .mp3 .plyr--audio .plyr__controls {
  position: relative;
  padding: 55px 55px 55px 18px;
  margin: 20px 0px 48px 0px;
}

#discography-post .mp3 .plyr__controls > button:last-of-type {
  top: 57px;
  display: block;
}

#discography-post .mp3 .plyr .plyr__progress {
  display: block;
  margin-left: 105px;
  max-width: 410px;
}

#discography-post .mp3 .plyr__controls > .plyr__time {
  margin-top: -1px;
  display: block;
  left: 53px;
  font-size: 20px;
}

#discography-post .mp3 .plyr__time + .plyr__time {
  margin-top: -3px;
  display: block;
  position: initial;
  margin-left: 20px;
  margin-right: 30px;
}

#discography-post .mp3 .plyr .plyr__volume {
  margin-top: 3px;
  display: block;
  max-width: 110px;
  margin-right: 20px;
}

#discography-post .plyr__volume input[type="range"]::-webkit-slider-thumb {
  background: #FF009B !important;
}

#discography-post .plyr__volume input[type="range"]::-moz-range-thumb {
  background: #FF009B !important;
}

#discography-post .plyr__volume input[type="range"]::-ms-thumb {
  background: #FF009B !important;
}

#discography-post .j_c {
  padding-bottom: 55px;
}

#discography-post .sec_2_content {
  max-width: 755px;
  padding-right: 45px !important;
}

#discography-post .music {
  max-width: 890px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 25px 24px 5px 23px;
}

#discography-post .plyr--audio .plyr__controls {
  border-color: transparent;
}

#discography-post .plyr__controls > button:last-of-type {
  right: 20px;
}

#discography-post .plyr__controls > button:last-of-type:before {
  font-size: 25px;
  right: 495%;
  top: 0px;
}

#discography-post .plyr--audio .plyr__controls {
  color: #fff;
}

#discography-post .plyr--video .plyr__controls button.tab-focus:focus,
#discography-post .plyr--video .plyr__controls button:hover {
  color: rgb(255, 255, 255);
}

#discography-post .plyr--audio .plyr__controls button.tab-focus:focus,
#discography-post .plyr--audio .plyr__controls button:hover,
.plyr__play-large {
  background: rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}

#discography-post .plyr__progress--buffer::-webkit-progress-bar,
#discography-post .plyr__progress--played::-webkit-progress-bar,
#discography-post .plyr__volume--display::-webkit-progress-bar {
  background: rgb(255, 255, 255);
}

#discography-post .plyr input[type="range"]::-webkit-slider-thumb {
  background: rgb(255, 255, 255);
}

#discography-post .plyr input[type="range"]::-moz-range-thumb {
  background: rgb(255, 255, 255);
}

#discography-post .plyr__volume input[type="range"]::-moz-range-thumb {
  background: rgb(255, 255, 255);
}

#discography-post .plyr__volume input[type="range"]:active::-moz-range-thumb {
  background: rgb(255, 255, 255);
  border-color: #FF009B !important;
}

#discography-post .plyr__volume input[type="range"]:active::-ms-thumb {
  background: rgb(255, 255, 255);
  border-color: #FF009B !important;
}

#discography-post
  .plyr__volume
  input[type="range"]:active::-webkit-slider-thumb {
  background: rgb(255, 255, 255);
  border-color: #FF009B !important;
}

#discography-post .plyr__volume input[type="range"]::-ms-thumb {
  background: rgb(255, 255, 255);
  border-color: #FF009B;
}

#discography-post .plyr input[type="range"]::-ms-fill-lower {
  background: rgb(255, 255, 255);
}

#discography-post .plyr input[type="range"]::-ms-thumb {
  background: rgb(255, 255, 255);
}

#discography-post .plyr input[type="range"]:active::-webkit-slider-thumb {
  background: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}

#discography-post .plyr input[type="range"]:active::-moz-range-thumb {
  background: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}

#discography-post .plyr input[type="range"]:active::-ms-thumb {
  background: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}

#discography-post .plyr__progress--buffer::-webkit-progress-bar,
#discography-post .plyr__progress--played::-webkit-progress-bar,
#discography-post .plyr__volume--display::-webkit-progress-bar {
  border-color: rgb(255, 255, 255);
}

#discography-post .plyr__progress--played,
#discography-post .plyr__volume--display {
  border-color: rgb(255, 255, 255);
}

#discography-post .plSel,
#discography-post .plSel:hover {
  color: rgb(255, 255, 255);
}

#discography-post a[id^="btn"] {
  color: rgb(255, 255, 255);
}

#discography-post a[id^="btn"]:hover,
#discography-post a[id^="btn"]:active {
  background-color: rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}

#discography-post .plyr--playing .plyr__controls [data-plyr="pause"] svg {
  color: #FF009B !important;
}

#discography-post .plyr--audio .plyr__controls {
  color: rgb(255, 255, 255);
}

#discography-post .plyr__progress--played,
#discography-post .plyr__volume--display {
  color: rgb(255, 255, 255);
}

#discography-post .plyr--audio .plyr__progress--buffer,
#discography-post .plyr--audio .plyr__volume--display {
  background: rgb(255, 255, 255);
}

#discography-post .plyr--audio .plyr__progress--buffer {
  color: rgb(255, 255, 255);
}

#discography-post .plyr--audio .plyr__controls button.tab-focus:focus,
#discography-post .plyr--audio .plyr__controls button:hover,
#discography-post .plyr__play-large {
  background: rgba(0, 0, 0, 0.1);
  color: rgb(255, 255, 255);
}

.cover-image {
  padding: 10px 0px 20px;
  margin-bottom: 40px;
}

.cover-image img {
  margin: 0px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.music_line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 20px;
}

.music_line .plyr__time {
  float: right;
}

.play-pause {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 25px;
}

.player-grig {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin: 0px 10px 8px;
  position: relative;
  background-position: 100% bottom;
  background-repeat: repeat-x;
  -webkit-background-size: 16px 2px;
  -moz-background-size: 16px 2px;
  -o-background-size: 16px 2px;
  background-size: 16px 2px;
  background-image: -webkit-radial-gradient(
    circle closest-side,
    #786057 -webkit-calc(100% - 0.5px),
    transparent 100%
  );
  background-image: -moz-radial-gradient(
    circle closest-side,
    #786057 -moz-calc(100% - 0.5px),
    transparent 100%
  );
  background-image: -o-radial-gradient(
    circle closest-side,
    #786057 calc(100% - 0.5px),
    transparent 100%
  );
  background-image: radial-gradient(
    circle closest-side,
    #786057 calc(100% - 0.5px),
    transparent 100%
  );
}

.player-grig svg g {
  fill: #fff;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.playlist .plyr__time {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.music-name {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.play-pause svg {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.play-pause svg polygon,
.play-pause svg path {
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.play-pause svg:hover polygon,
.play-pause svg:hover path {
  fill: #FF009B;
}

#discography-post .plyr .plyr__volume input[type="range"] {
  top: 3px;
}

body.firefox #discography-post .plyr .plyr__volume input[type="range"] {
  top: 0px;
}

body.firefox .plyr .plyr__volume input[type="range"] {
  top: 0px;
}

.music_line .plyr--audio .plyr__controls {
  padding: 0px 0px 0px 0px;
}

.music_line .plyr .plyr__progress,
.music_line .plyr .plyr__volume,
.music_line .plyr__controls > button:last-of-type,
.music_line .plyr__controls > .plyr__time {
  display: none;
}

.music_line .plyr__time + .plyr__time {
  display: block;
  position: absolute;
  right: 0;
  width: fit-content;
  left: auto;
  margin-left: 0;
  margin-right: 0;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.playlist .music_line .plyr--audio .plyr__controls {
  background-color: rgba(0, 0, 0, 0);
  border-color: transparent;
}

#discography-post .plyr__controls button svg {
  width: 20px;
  height: 20px;
}

.playlist .music_line > span {
  color: #999;
  font-size: 18px;
  line-height: 30px;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.playlist-title h2 {
  font-family: "Oswald";
  font-size: 40px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.music_line .plyr__controls button svg {
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.playlist .music_line:hover .plyr__time + .plyr__time {
  color: #FF009B;
}

.playlist .music_line:hover > span,
.playlist .music_line:hover .plyr__controls button svg {
  color: #FF009B;
}

.playlist .music_line:hover .plyr__time:after {
  color: #FF009B;
}

.playlist .music_line:hover .player-grig {
  background-image: -webkit-radial-gradient(
    circle closest-side,
    #FF009B -webkit-calc(100% - 0.5px),
    transparent 100%
  );
  background-image: -moz-radial-gradient(
    circle closest-side,
    #FF009B -moz-calc(100% - 0.5px),
    transparent 100%
  );
  background-image: -o-radial-gradient(
    circle closest-side,
    #FF009B calc(100% - 0.5px),
    transparent 100%
  );
  background-image: radial-gradient(
    circle closest-side,
    #FF009B calc(100% - 0.5px),
    transparent 100%
  );
}

.playlist .music_line:hover .play-pause svg polygon,
.playlist .music_line:hover .play-pause svg path {
  fill: #FF009B;
}

.playlist {
  margin-top: 50px;
}

.playlist-title {
  margin-bottom: 30px;
}

.playlist .plyr__controls button {
  padding: 0px;
}

.music_date {
  margin-bottom: 0px !important;
}

.music_date i {
  width: 22px;
  margin-bottom: 0;
}

.music_date p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 8px;
}

.music_date span {
  margin-left: 8px;
}

.music_date * {
  color: #999;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.music_date a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0;
}

.music_date a:hover * {
  color: #FF009B;
}

.music_after {
  margin-bottom: 16px !important;
}

.music_after p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 8px;
}

.music_after a {
  color: #999;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.music_after a:hover {
  color: #FF009B;
}

.music_shop {
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.shop_cta {
  font-family: "Oswald";
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  border: 1px solid #a6152a;
  width: 127px;
  height: 50px;
  margin: 0;
  padding-top: 1px;
  border-radius: 8px;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
  margin-right: 15px;
  margin-bottom: 15px !important;
  letter-spacing: 1px;
}

.shop_cta:hover {
  background-color: #FF009B;
  border-color: #FF009B;
  color: #fff;
}

.discography_description p {
  margin-bottom: 0px;
}

.discography_description * {
  font-size: 18px;
  line-height: 30px;
  color: #999;
}

#discography-text {
  margin-top: 55px;
}

.social-icons {
  padding-top: 30px;
  border-top: 1px solid #7d414a;
  margin-bottom: 70px;
  margin-top: 30px;
}

.social-icons > span {
  font-family: "Oswald";
  font-size: 16px;
  color: #ccc;
  text-transform: uppercase;
  margin-right: 15px;
  letter-spacing: 3px;
}

.social-icons a {
  font-size: 18px;
  color: #999;
  margin-right: 15px;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.social-icons a:hover {
  color: #FF009B;
}

/* =================================================  */

/* MUSIC SINGLE ALBUM END */

/* =================================================  */

/* =================================================  */

/* ALL EVENTS*/

/* =================================================  */

.all-events #on-tour {
  padding-top: 70px;
  padding-bottom: 70px;
}

.all-events #on-tour .overly {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgb(27, 27, 27)),
    color-stop(rgb(100, 21, 34)),
    to(rgb(0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    top,
    rgb(27, 27, 27),
    rgb(100, 21, 34),
    rgb(0, 0, 0)
  );
  background-image: -moz-linear-gradient(
    top,
    rgb(27, 27, 27),
    rgb(100, 21, 34),
    rgb(0, 0, 0)
  );
  background-image: -o-linear-gradient(
    top,
    rgb(27, 27, 27),
    rgb(100, 21, 34),
    rgb(0, 0, 0)
  );
  background-image: linear-gradient(
    180deg,
    rgb(27, 27, 27),
    rgb(100, 21, 34),
    rgb(0, 0, 0)
  );
}

.all-events #on-tour .section_bg_image {
  background-size: cover;
}

.all-events .ticket * {
}

/* =================================================  */

/* ALL EVENTS END */

/* =================================================  */

/* =================================================  */

/* SINGLE EVENTS */

/* =================================================  */

.slider-info {
  position: relative;
  height: 630px;
  background-color: #000000;
  margin-bottom: 500px;
}

#events-banner .row {
  margin: 0px;
}

#events-banner .col {
  padding: 0px;
}

.events-slider {
  width: 52%;
  height: 100%;
}

.events-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.events-info {
  width: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.events-slider .carousel-item img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.events_date * {
  font-size: 30px;
  color: #bbb;
}

.events_date p {
  line-height: 30px;
  margin-bottom: 22px;
}

.events_date i {
  width: 33px;
  margin-right: 15px;
  text-align: center;
  color: #fff;
}

.event-tickets a {
  font-family: "Oswald";
  font-size: 18px;
  border: 1px solid #FF009B;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 3px;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.event-tickets {
  margin-top: 65px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.event-tickets a {
  padding: 30px 65px 28px;
  border-radius: 5px;
}

.event-tickets a:first-child {
  margin-right: 35px;
}

.event-tickets a:last-child {
  padding: 31px 49px;
}

.event-tickets a:hover:first-child {
  border-color: #FF009B;
  background-color: #FF009B;
}

.event-tickets a:hover:last-child {
  background-color: #FF009B;
  border-color: #FF009B;
}

#text-and-video .row {
  margin: 0;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#text-and-video .row > div {
  padding: 0px;
}

#text-and-video .row > div:first-child {
  margin-right: 35px;
  max-width: 765px;
  -webkit-box-flex: initial;
  -webkit-flex: initial;
  -moz-box-flex: initial;
  -ms-flex: initial;
  flex: initial;
}

.single-events-text {
  margin-top: -10px;
}

.single-events-text p {
  font-size: 18px;
  line-height: 30px;
  color: #999;
  margin-bottom: 40px;
}

#text-and-video .row > div:last-child {
  max-width: 845px;
  -webkit-box-flex: initial;
  -webkit-flex: initial;
  -moz-box-flex: initial;
  -ms-flex: initial;
  flex: initial;
}

#text-and-video {
  margin-top: 70px;
  padding-bottom: 70px;
  background-color: rgb(16, 22, 23);
  z-index: 2;
}

#text-and-video .youtube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

#text-and-video .youtube img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#text-and-video .social-icons {
  margin-top: 30px;
  padding-left: 0;
  margin-bottom: 0;
  border-color: rgb(49, 54, 55);
}

#events-banner {
  position: relative;
  overflow: hidden;
}

.background-map {
  width: 100%;
  position: absolute;
  z-index: 3;
  top: 25%;
  left: 0;
}

#map {
  position: relative;
}

#map iframe {
  width: 100%;
  height: 840px;
  border: none;
}

.background-map .overly-1 {
  opacity: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  cursor: pointer;
}

/* =================================================  */

/* SINGLE EVENTS END */

/* =================================================  */

/* =================================================  */

/* VIDEOS */

/* =================================================  */

#videos {
  position: relative;
}

#videos .embed-responsive {
  height: 290px;
  background-color: rgb(0, 0, 0);
}

#videos .embed-responsive .youtube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  -o-object-fit: cover;
  object-fit: cover;
}

#videos .embed-responsive .youtube img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

#videos .youtube .play {
  background-image: url(../images/play-video.png);
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

#videos .youtube:hover img {
  opacity: 0.6;
}

#videos .youtube:hover .play {
  opacity: 1;
}

#videos .video-img-banner {
  position: relative;
  height: 290px;
  background-color: rgb(0, 0, 0);
}

#videos .video-img-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

#videos .video-img-banner .play {
  background-image: url(../images/play-video.png);
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9;
}

#videos .w-100:hover img {
  opacity: 0.6;
}

#videos .w-100:hover .play {
  opacity: 1;
}

.video-banner-name {
  font-family: "Oswald";
}

.video-banner-name h2 {
  font-family: "Oswald";
  font-weight: 400;
  color: #fff;
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

#videos .w-100:hover .video-banner-name h2 {
  color: #FF009B;
}

.video-banner-name p {
  color: #999;
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}

.video-block {
  margin-bottom: 70px;
}

/* =================================================  */

/* VIDEOS END */

/* =================================================  */

/* =================================================  */

/* SINGLE VIDEOS */

/* =================================================  */

body.single-video #discography-text {
  margin-top: 70px;
}

body.single-video .discography_description p {
  color: #999;
}

body.single-video .social-icons {
  margin-top: 70px;
  margin-bottom: 70px;
  border-color: #222222;
}

body.single-video .social-icons a {
  color: #999;
}

body.single-video #video-post {
  margin-top: 0px;
}

/* =================================================  */

/* SINGLE VIDEOS END */

/* =================================================  */

/* =================================================  */

/* GALLERY-PHOTOGALLERY */

/* =================================================  */

body.gallery-photogallery #discography {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0;
}

body.gallery-photogallery #discography .grid-item {
  width: 33.3333%;
  height: 645px;
  overflow: hidden;
  margin-bottom: 30px;
}

body.gallery-photogallery #discography .grid-item:nth-child(3) {
  height: 885px !important;
  padding: 0px 30px;
}

body.gallery-photogallery #discography .grid-item:nth-child(7) {
  height: 645px !important;
  padding: 0px 30px;
}

body.gallery-photogallery #discography .grid-item:last-child {
  height: 405px !important;
  padding: 0px 30px;
}

body.gallery-photogallery #discography .music-banner-text {
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}

body.gallery-photogallery #discography .music-banner-text .dis-name {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  margin: auto;
  z-index: 9;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
  transition: opacity 0.2s, -webkit-transform 0.35s;
  -o-transition: opacity 0.2s, -o-transform 0.35s;
  -moz-transition: opacity 0.2s, transform 0.35s, -moz-transform 0.35s;
  transition: opacity 0.2s, transform 0.35s;
  transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s,
    -moz-transform 0.35s, -o-transform 0.35s;
  transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s;
  -webkit-transform: translate3d(0, 40px, 0);
  -moz-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
  -webkit-transition-delay: 0.05s;
  -moz-transition-delay: 0.05s;
  -o-transition-delay: 0.05s;
  transition-delay: 0.05s;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
}

body.gallery-photogallery #discography a.img_link {
  background-color: rgb(167, 54, 71);
}

body.gallery-photogallery #discography a.img_link img {
  width: -webkit-calc(100% + 50px) !important;
  width: -moz-calc(100% + 50px) !important;
  width: calc(100% + 50px) !important;
  max-width: -webkit-calc(100% + 50px) !important;
  max-width: -moz-calc(100% + 50px) !important;
  max-width: calc(100% + 50px) !important;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, -o-transform 0.35s;
  -moz-transition: opacity 0.35s, transform 0.35s, -moz-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s,
    -moz-transform 0.35s, -o-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
  -webkit-transform: translate3d(-40px, 0, 0);
  -moz-transform: translate3d(-40px, 0, 0);
  transform: translate3d(-40px, 0, 0);
}

body.gallery-photogallery #discography .grid-item:hover .dis-name {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0.05s;
  -moz-transition-delay: 0.05s;
  -o-transition-delay: 0.05s;
  transition-delay: 0.05s;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  opacity: 1;
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
}

body.gallery-photogallery #discography .grid-item:hover img {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0.05s;
  -moz-transition-delay: 0.05s;
  -o-transition-delay: 0.05s;
  transition-delay: 0.05s;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  opacity: 0.3;
}

body.gallery-photogallery #discography > .row {
  margin: 0;
}

body.gallery-photogallery #discography .music-banner {
  padding: 0px;
}

body.gallery-photogallery .dis-name h2 {
  font-family: "Oswald";
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
  color: #fff;
  margin-top: 0px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

body.gallery-photogallery .dis-name p {
  font-family: "Open Sans";
  color: #fff;
  font-size: 20px;
  line-height: 30px;
}

/* =================================================  */

/* GALLERY-PHOTOGALLERY END */

/* =================================================  */

/* =================================================  */

/* SINGLE GALLERY */

/* =================================================  */

#single-gallery .grid-item {
  height: 400px;
  width: 33.3333%;
  background-image: -webkit-linear-gradient(
    230deg,
    rgb(100, 21, 34),
    rgb(37, 22, 26)
  );
  background-image: -moz-linear-gradient(
    230deg,
    rgb(100, 21, 34),
    rgb(37, 22, 26)
  );
  background-image: -o-linear-gradient(
    230deg,
    rgb(100, 21, 34),
    rgb(37, 22, 26)
  );
  background-image: linear-gradient(-140deg, rgb(100, 21, 34), rgb(37, 22, 26));
}

#single-gallery .grid-item:hover img {
  opacity: 0.5;
}

#single-gallery .grid-item:nth-child(3),
#single-gallery .grid-item:nth-child(6n + 1) {
  height: 800px;
}

#single-gallery .grid-item:nth-child(9n + 1) {
  width: 66.6666%;
}

#single-gallery .grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

body.gallery-single-gallery #discography-text {
  margin-top: 0px;
  padding-top: 70px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgb(100, 21, 34)),
    to(rgb(27, 27, 27))
  );
  background-image: -webkit-linear-gradient(
    bottom,
    rgb(100, 21, 34),
    rgb(27, 27, 27)
  );
  background-image: -moz-linear-gradient(
    bottom,
    rgb(100, 21, 34),
    rgb(27, 27, 27)
  );
  background-image: -o-linear-gradient(
    bottom,
    rgb(100, 21, 34),
    rgb(27, 27, 27)
  );
  background-image: linear-gradient(0deg, rgb(100, 21, 34), rgb(27, 27, 27));
}

.sm-title {
  margin-bottom: 70px;
}

.sm-title h2 {
  font-family: "Oswald";
  color: #fff;
  font-size: 30px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

.sm-section .discography_description p {
  font-size: 16px;
  line-height: 30px;
  color: #999;
}

.sm-section .social-icons {
  padding-top: 30px;
  padding-left: 0px;
  margin-bottom: 0px;
  padding-bottom: 70px;
  text-align: center;
}

.sm-section .social-icons a {
  color: #999;
}

.sm-section .social-icons a:hover {
  color: #FF009B;
}

/* =================================================  */

/* SINGLE GALLERY END */

/* =================================================  */

/* =================================================  */

/* BLOG GRID */

/* =================================================  */

#blog-grid-gallery {
  padding-bottom: 41px;
}

#blog-grid-gallery .section {
  max-width: 1685px;
  overflow: hidden;
}

.grid-gallery ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.grid-gallery figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.grid-gallery figcaption h3 {
  font-family: "Oswald";
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  color: #353738;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.grid-gallery figcaption .post-publish-date {
  font-family: "Open Sans";
  font-size: 16px;
  text-transform: capitalize;
  color: #bf152d;
  font-style: italic;
}

.grid-gallery figcaption p {
  font-family: "Open Sans";
  font-size: 18px;
  line-height: 30px;
  color: #5f5f5f;
  margin-bottom: 0;
  margin-top: 10px;
}

.grid li {
  width: 33.333%;
  padding: 0px 20px 40px 20px;
  float: left;
  cursor: pointer;
}

.grid li.grid-sizer {
  padding: 0px;
}

.grid figure {
  margin: 0px;
}

.grid li:hover figcaption * {
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.grid li:hover figcaption h3 {
  color: #fff;
}

.grid li:hover figcaption p {
  color: #fff;
}

.grid li:hover figcaption span {
  color: #fff;
}

.grid li:hover figcaption {
  background-color: #FF009B;
}

.grid figcaption {
  background-color: rgb(255, 255, 255);
  padding: 35px 45px 45px;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.grid li:nth-of-type(2) .blog-grid-image,
.grid li:nth-of-type(4) .blog-grid-image,
.grid li:nth-of-type(5) .blog-grid-image,
.grid li:nth-of-type(6) .blog-grid-image,
.grid li:nth-of-type(7) .blog-grid-image,
.grid li:nth-of-type(10) .blog-grid-image {
  height: 330px;
}

.grid li:nth-of-type(3) .blog-grid-image,
.grid li:nth-of-type(8) .blog-grid-image,
.grid li:nth-of-type(9) .blog-grid-image {
  height: 520px;
}

/* =================================================  */

/* BLOG GRID END */

/* =================================================  */

/* =================================================  */

/* BLOG SINGLE POST*/

/* =================================================  */

.featured-image {
  position: relative;
  height: 540px;
  margin-bottom: 40px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 0 40%;
  object-position: 0 40%;
}

.post-text {
  text-align: center;
}

.post-category {
  font-family: "Open Sans";
  font-size: 16px;
  color: #999;
}

.post-heading h2 {
  font-family: "Oswald";
  font-weight: 700;
  font-size: 40px;
  line-height: 30px;
  color: #fff;
  margin: 20px 0px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-by {
  font-family: "Open Sans";
  font-style: italic;
}

.post-by * {
  font-size: 14px;
  color: #999;
}

.post-by i {
  margin-right: 13px;
}

.post-text p {
  font-size: 18px;
  line-height: 30px;
  color: #999;
  margin-top: 40px;
  letter-spacing: 0.02px;
  text-align: left;
}

p.post-quote {
  position: relative;
  float: none;
  margin: 60px auto 60px;
  padding: 0px 50px;
  font-style: italic;
  color: #bf152d;
}

p.post-quote:after {
  content: "";
  display: block;
  width: 32px;
  height: 30px;
  position: absolute;
  background-image: url(../images/quote-2-demo-3.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  top: -7px;
  right: 0%;
}

p.post-quote:before {
  content: "";
  display: block;
  width: 32px;
  height: 30px;
  position: absolute;
  background-image: url(../images/quote-1-demo-3.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  top: -7px;
  left: 0%;
}

.post-share {
  margin-top: 30px;
  text-align: left;
}

.post-share span {
  font-family: "Oswald";
  font-size: 16px;
  color: #ccc;
  margin-right: 15px;
  letter-spacing: 3px;
}

.post-share a {
  font-size: 18px;
  color: #999;
  margin-right: 15px;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.post-share a:hover {
  color: #FF009B;
}

.author-form-group {
  position: relative;
  margin-top: 65px;
  padding: 70px 0px;
}

.post-author:after {
  content: "";
  display: block;
  clear: both;
}

.post-author {
  max-width: 75%;
  clear: both;
}

.author-info:after {
  content: "";
  display: block;
  clear: both;
}

.author-image {
  width: 60px;
  height: 60px;
  float: left;
  margin-bottom: 5px;
  background-color: rgb(204, 204, 204);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.author-image img.no-pic {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
}

.author-name-date {
  float: left;
  margin-left: 10px;
  margin-top: 5px;
}

.author-info em {
  display: block;
  clear: both;
  font-size: 16px;
  color: #ffffff;
}

.author-description {
  margin-top: 6px;
  clear: both;
}

.author-name-date p:nth-of-type(1) {
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2px;
}

.author-name-date p:nth-of-type(2) {
  font-size: 16px;
  color: #868686;
  margin-bottom: 0px;
  font-style: italic;
}

.author-description p {
  font-size: 18px;
  line-height: 30px;
  color: #999;
}

.reply {
  float: right;
  margin-top: 0px;
  margin-bottom: 70px;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.reply:hover {
  color: #FF009B;
}

.reply i {
  margin-left: 10px;
}

#blog-post .form {
  clear: both;
}

#blog-post .form h2 {
  font-family: "Oswald";
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 3px;
}

#blog-post .form .btn-primary {
  border-color: #FF009B;
  padding: 20px 38px 20px;
}

#blog-post .form .btn-primary:hover {
  border-color: #FF009B;
}

.blog-content > div.post-content {
  padding: 0px;
}

.blog-content > div.sitebar {
  padding-top: 15px;
  padding-left: 50px;
  padding-right: 0px;
}

.blog-search form {
  height: 55px;
  border-top: 1px solid #292929;
  border-left: 1px solid #292929;
  border-bottom: 1px solid #292929;
}

.blog-search form input {
  font-family: "Oswald";
  text-transform: capitalize;
  margin-right: 0px !important;
  width: 85%;
  height: 100%;
  border: none;
  padding-left: 20px;
  padding-top: 3px;
  background-color: rgb(255, 255, 255);
}

.blog-search form input:focus {
  outline: none;
}

.blog-search form button:focus {
  outline: none;
}

.blog-search form button {
  width: 15%;
  height: 100%;
  cursor: pointer;
  border: none;
  background-color: rgb(33, 33, 33);
}

.blog-search form button i {
  font-size: 20px;
  color: #bf152d;
}

.blog-search form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "Oswald";
  color: #000;
  font-size: 16px;
  text-transform: capitalize;
}

.blog-search form input::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "Oswald";
  color: #000;
  font-size: 16px;
  text-transform: capitalize;
}

.blog-search form input:-ms-input-placeholder {
  /* IE 10+ */
  font-family: "Oswald";
  color: #000;
  font-size: 16px;
  text-transform: capitalize;
}

.blog-search form input:-moz-placeholder {
  /* Firefox 18- */
  font-family: "Oswald";
  color: #000;
  font-size: 16px;
  text-transform: capitalize;
}

.blog-categories {
  margin-top: 46px;
}

.blog-categories h2,
.blog-recent-post h2 {
  font-family: "Oswald";
  font-size: 24px;
  line-height: 30px;
  text-align: left;
  color: #bf152d;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-weight: 400;
  text-transform: uppercase;
}

.categories-line {
  font-size: 16px;
  line-height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #656565;
  text-transform: capitalize;
  padding: 3px 0px;
}

.categories-line:hover {
  color: #FF009B;
}

.blog-recent-post {
  margin-top: 30px;
}

.resent-posts-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0px 5px;
}

.resent-posts-line:after {
  content: "";
  display: block;
  clear: both;
}

.resent-posts-line:hover .recent-post-name h3 {
  color: #FF009B;
}

.recent-post-image {
  width: 90px;
  height: 70px;
  margin-right: 10px;
}

.recent-post-image img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  -o-object-fit: cover;
}

.recent-post-name {
  position: relative;
  display: -ms-grid;
  display: grid;
}

.recent-post-name h3 {
  font-family: "Open Sans";
  font-size: 16px;
  color: #ffffff;
  line-height: 22px;
  text-transform: capitalize;
  letter-spacing: 1px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.recent-post-name span {
  font-family: "Open Sans";
  font-size: 14px;
  color: #868686;
  font-style: italic;
  text-transform: capitalize;
  letter-spacing: 1px;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

/* =================================================  */

/* BLOG SINGLE POST END */

/* =================================================  */

/* =================================================  */

/* BLOG STANDARD */

/* =================================================  */

#standard-blog {
  position: relative;
}

#standard-blog .blog-content {
  padding-bottom: 94px;
  margin-bottom: 0;
}

#standard-blog .blog-content > div.sitebar {
  padding-top: 0px;
}

@media (min-width: 901px) {
  #standard-blog .post-content > .standard-post-item:last-child {
    margin-bottom: 28px;
  }
}

.standard-post-item {
  margin-bottom: 118px;
}

.standard-blog-title h2 {
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.standard-blog-title:hover h2 {
  color: #FF009B;
}

.post-category {
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.categories-name:hover span {
  color: #FF009B;
}

.categories-name:hover {
  color: #FF009B;
}

.post-cta {
  text-align: center;
  margin-top: 64px;
}

.post-cta a {
  font-family: "Oswald";
  font-size: 15px;
  color: #fff;
  letter-spacing: 7px;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 24px 13px 24px 20px;
}

.post-cta a:hover {
  background-color: #FF009B;
  border-color: #FF009B;
  color: #fff;
}

/* =================================================  */

/* BLOG STANDARD END */

/* =================================================  */

/* =================================================  */

/* BLOG MANSORY */

/* =================================================  */

#blog-mansory-section .grid-item.active {
  background-color: #fff;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

#blog-mansory-section .grid-item.active .g_t {
  opacity: 0.5;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

#blog-mansory-section .grid-item.active .grid-item-img img {
  opacity: 0.5;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.grid:after {
  display: block;
  content: "";
  clear: both;
}

.grid-sizer {
  width: 33.33333333%;
}

.grid-item {
  width: 100%;
}

.grid-item--width1 {
  width: 100%;
  height: 720px;
}

.grid-item--width2 {
  width: 33.33333333%;
  height: 1440px;
}

.grid-item--width3 {
  width: 66.666666%;
  height: 720px;
}

.grid-item--width4 {
  width: 66.7%;
  height: 720px;
}

.grid-item-img {
  position: relative;
  height: 100%;
  float: left;
}

.grid-item-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  object-fit: cover;
  -o-object-fit: cover;
  opacity: 0.5;
}

.grid-item-content {
  display: table;
  position: relative;
  height: 100%;
  float: left;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  background-color: rgb(255, 255, 255);
}

.grid-item-content:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  z-index: 9;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.grid-item--width1 .grid-item-content:after,
.grid-item--width4 .grid-item-content:after {
  border-top: 15px solid transparent;
  border-right: 15px solid rgb(255, 255, 255);
  border-bottom: 15px solid transparent;
  top: 47.5%;
  left: -14px;
}

.grid-item--width1:hover .grid-item-content:after,
.grid-item--width4:hover .grid-item-content:after {
  border-right-color: #FF009B;
}

.grid-item--width2 .grid-item-content:after {
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid rgb(255, 255, 255);
  top: -14px;
  left: 47.5%;
}

.grid-item--width2:hover .grid-item-content:after {
  border-bottom-color: #FF009B;
}

.grid-item--width3 .grid-item-content:after {
  border-top: 15px solid transparent;
  border-left: 15px solid rgb(255, 255, 255);
  border-bottom: 15px solid transparent;
  top: 47.5%;
  right: -14px;
}

.grid-item--width3:hover .grid-item-content:after {
  border-left-color: #FF009B;
}

.grid-item--width1 .grid-item-img {
  width: 66.666666%;
}

.grid-item--width1 .grid-item-content {
  width: 33.33333333%;
}

.grid-item--width2 .grid-item-img {
  width: 100%;
  height: 50%;
}

.grid-item--width2 .grid-item-content {
  height: 50%;
  width: 100%;
}

.grid-item--width3 .grid-item-img {
  width: 50%;
}

.grid-item--width3 .grid-item-content {
  width: 50%;
}

.grid-item--width4 .grid-item-img {
  width: 50%;
}

.grid-item--width4 .grid-item-content {
  width: 50%;
}

.g_t * {
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.g_t {
  display: table-cell;
  vertical-align: middle;
  padding: 0px 70px;
}

.g_t h3 {
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 8px;
  font-family: "Oswald";
  font-weight: 500;
  text-align: center;
  color: #bf152d;
  margin-bottom: 18px;
}

.g_t p {
  font-size: 18px;
  line-height: 30px;
  color: #5f5f5f;
}

.grid-item:hover .grid-item-content {
  background-color: #FF009B;
}

.grid-item:hover .g_t h3 {
  color: rgb(255, 255, 255);
}

.grid-item:hover .g_t p {
  color: rgb(255, 255, 255);
}

.see-more {
  text-align: center;
  margin-top: 94px;
  margin-bottom: 94px;
}

.see-more a {
  font-family: "Oswald";
  font-size: 15px;
  color: #fff;
  padding: 24px 13px 24px 20px;
  letter-spacing: 7px;
  border: 1px solid #fff;
  border-radius: 10px;
}

.see-more a:hover {
  background-color: #FF009B;
  border-color: #FF009B;
  color: #fff;
}

.grid-item-img:after {
  content: "";
  display: block;
  width: 375px;
  height: 50px;
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.grid-item--width2 .grid-item-img:after {
  top: auto;
  bottom: 15%;
}

/* =================================================  */

/* BLOG MANSORY END */

/* =================================================  */

/* =================================================  */

/* CONTACT US */

/* =================================================  */

body.contact-us-page #contact-us {
  padding: 70px 0px 70px;
}

.contact-info {
  width: 60%;
}

.contact-info h2 {
  font-family: "Oswald";
  font-weight: 400;
  width: 82%;
  font-size: 40px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.contact-info p {
  font-size: 18px;
  line-height: 30px;
  color: #999;
  margin-bottom: 0px;
}

.contact-adress {
  margin-top: 40px;
  margin-bottom: 40px;
}

.contact-adress > a,
.contact-adress > p {
  display: block;
  font-size: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  margin-bottom: 5px;
}

.contact-adress > a:hover {
  color: #FF009B;
}

.contact-adress > a i,
.contact-adress > p i {
  width: 20px;
  margin-right: 15px;
}

body.contact-us-page .form .btn-primary {
  border-color: #FF009B;
}

.form .fild_2 {
  margin-bottom: 20px;
}

body.contact-us-page .form textarea {
  padding-top: 20px;
}

body.contact-us-page .form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-style: initial;
}

body.contact-us-page .form input::-moz-placeholder {
  /* Firefox 19+ */
  font-style: initial;
}

body.contact-us-page .form input:-ms-input-placeholder {
  /* IE 10+ */
  font-style: initial;
}

body.contact-us-page .form input:-moz-placeholder {
  /* Firefox 18- */
  font-style: initial;
}

body.contact-us-page .form textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-style: initial;
  padding-top: 0px;
}

body.contact-us-page .form textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-style: initial;
  padding-top: 0px;
}

body.contact-us-page .form textarea:-ms-input-placeholder {
  /* IE 10+ */
  font-style: initial;
  padding-top: 0px;
}

body.contact-us-page .form textarea:-moz-placeholder {
  /* Firefox 18- */
  font-style: initial;
  padding-top: 0px;
}

/* =================================================  */

/* CONTACT US END */

/* =================================================  */

/* =================================================  */

/* CART */

/* =================================================  */

#cart-order {
  padding-bottom: 70px;
}

.product-cart > .row > div:first-child {
  padding: 0px;
}

.cart-name {
  font-family: "Open Sans";
  border-bottom: 2px solid #464646;
  padding-bottom: 8px;
  margin-top: -8px;
}

.cart-name * {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #fff;
  text-transform: capitalize;
}

.cart-item {
  padding: 30px 0px;
  border-bottom: 1px solid #464646;
}

.cart-item:after {
  content: "";
  display: block;
  clear: both;
}

.cart-item > div:after {
  content: "";
  display: block;
  clear: both;
}

.cart-image {
  width: 230px;
  height: 230px;
  border: 2px solid #fff;
  border-radius: 20px;
  overflow: hidden;
  float: left;
  margin-right: 45px;
  background-color: rgb(255, 255, 255);
}

.cart-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.cart-description {
  width: 60%;
  padding-top: 15px;
  padding-right: 20px;
  float: left;
}

.cart-description a,
.cart-description h2 {
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 20px;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.cart-description a:hover h2 {
  color: #FF009B;
}

.cart-description p {
  font-size: 18px;
  line-height: 30px;
  color: #999;
  margin-bottom: 0;
}

.product-total:after {
  content: "";
  display: block;
  clear: both;
}

.product-total {
  position: absolute;
  width: 100%;
  height: 27px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.product-price * {
  font-size: 30px;
  line-height: 30px;
  color: #999;
}

.delete-product {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 25px;
  height: 25px;
}

.delete-product svg {
  width: 23px;
  height: 23px;
  cursor: pointer;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.delete-product svg path {
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.delete-product svg path {
  fill: #cccccc;
}

.delete-product svg:hover path {
  fill: #FF009B;
}

.order-coupon:after {
  content: "";
  display: block;
  clear: both;
}

.order-coupon {
  margin-top: 70px;
}

.enter-coupon,
.order-button {
  max-width: 520px;
  width: 100%;
}

.enter-coupon {
  float: left;
}

.order-button {
  float: right;
}

.coupon-title h3 {
  font-size: 30px;
  line-height: 30px;
  color: #ccc;
  margin-bottom: 0;
  text-transform: uppercase;
}

.coupon-title span {
  font-size: 20px;
  line-height: 30px;
  color: #656565;
}

.coupon-form {
  margin-top: 25px;
}

.coupon-form form {
  height: 55px;
}

.coupon-form form input {
  width: 73%;
  height: 100%;
  margin-right: 0px !important;
  color: #fff;
  text-transform: uppercase;
  padding-left: 15px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-right: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.coupon-form form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #4a4a4a;
  opacity: 0;
}

.coupon-form form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #4a4a4a;
  opacity: 0;
}

.coupon-form form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #4a4a4a;
  opacity: 0;
}

.coupon-form form input:-moz-placeholder {
  /* Firefox 18- */
  color: #4a4a4a;
  opacity: 0;
}

.coupon-form form input:focus {
  outline: 0;
  border-color: #FF009B;
}

.coupon-form form button {
  width: 27%;
  height: 100%;
  cursor: pointer;
  background-color: #FF009B;
  border: 2px solid #FF009B;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.coupon-form form button:focus {
  outline: none;
}

.order-button:after,
.glob-price:after,
.cart-buttons:after {
  content: "";
  display: block;
  clear: both;
}

.o-t {
  float: left;
}

.g-p {
  float: right;
}

.o-t * {
  font-size: 30px;
  line-height: 30px;
  color: #ccc;
}

.g-p * {
  font-size: 40px;
  line-height: 30px;
  font-weight: 400;
  color: #ffffff;
}

.cart-buttons {
  margin-top: 25px;
  margin-bottom: 25px;
}

.cart-buttons a {
  font-size: 18px;
  color: #fff;
  padding: 14px 55px;
  background-color: rgb(140, 140, 133);
  border-radius: 5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cart-buttons a:hover {
  background-color: #FF009B;
}

.cart-buttons a:first-child {
  float: left;
}

.cart-buttons a:last-child {
  float: right;
  padding: 14px 68px;
  background-color: #FF009B;
}

.c-t * {
  font-size: 18px;
  line-height: 30px;
  color: #656565;
  margin-bottom: 0;
}

.plusminus {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 145px;
  height: 52px;
  border-radius: 5px;
  overflow: hidden;
}

.plusminus button {
  display: block;
  width: 45px;
  height: 52px;
  position: absolute;
  margin: 0;
  padding: 0;
  border: 0;
  background: #fff;
  color: #505050;
  line-height: 1;
  cursor: pointer;
}

.plusminus button:focus {
  outline: none;
  background-color: #FF009B;
  color: #fff;
}

.plusminus button:disabled {
  background: #999;
  color: #ccc;
  cursor: default;
}

.plusminus button:first-child {
  left: 0;
  top: 0;
}

.plusminus button:first-child:before {
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  background-color: #505050;
  margin: auto;
}

.plusminus button:focus:first-child:before {
  background-color: rgb(255, 255, 255);
}

.plusminus button:last-child {
  right: 0;
  top: 0;
}

.plusminus button:last-child:before {
  content: "+";
  font-size: 30px;
}

.plusminus input[type="number"] {
  width: 55px;
  height: 52px;
  position: absolute;
  left: 45px;
  top: 0px;
  margin: 0;
  border: 0;
  font-size: 18px;
  color: #3a3a3a;
  font-weight: bold;
  text-align: center;
  -moz-appearance: textfield;
}

.plusminus input:focus {
  outline: none;
}

.plusminus input::-webkit-outer-spin-button,
.plusminus input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.prise-mobile,
.total-mobile {
  display: none;
}

/* =================================================  */

/* CART END */

/* =================================================  */

/* =================================================  */

/* 404 PAGE */

/* =================================================  */

.page-404 #header-404 .bg_image {
  background-position: 50% 100%;
}

.section-404 {
  display: table;
  width: 90%;
  height: 100%;
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.page-404 .big-title {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
  bottom: 30%;
}

.page-404 .big-title img {
  width: auto;
  opacity: 1;
}

.page-404 .big-title h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 97px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgb(255, 255, 255);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 15px;
  padding: 0px 10px 0px 30px;
}

.search-404 {
  max-width: 1080px;
  width: 100%;
  position: absolute;
  bottom: 38%;
  left: 0;
  right: 0;
  margin: auto;
}

.search-404 form {
  height: 60px;
}

.search-404 form input {
  width: 82%;
  height: 100%;
  margin-right: 0 !important;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  padding-left: 40px;
  border: 2px solid #fff;
  text-transform: capitalize;
}

.search-404 form input:focus {
  outline: none;
  border-color: #FF009B;
}

.search-404 form button {
  width: 18%;
  height: 100%;
  background-color: #FF009B;
  border: 2px solid #FF009B;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.search-404 form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #363636;
}

.search-404 form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #363636;
}

.search-404 form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #363636;
}

.search-404 form input:-moz-placeholder {
  /* Firefox 18- */
  color: #363636;
}

.content-404 {
  max-width: 540px;
  position: absolute;
  bottom: 21%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.content-404 h2 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 5px;
}

.content-404 p {
  font-size: 16px;
  color: #999;
  margin-top: 1rem;
}

.content-404 a {
  font-size: 24px;
  color: #ffff;
}

.content-404 a:hover {
  color: #FF009B;
}

.content-404 a i {
  margin-right: 20px;
}

/* =================================================  */

/* 404 PAGE END  */

/* =================================================  */

/* =================================================  */

/* SEARCH RESULT  */

/* =================================================  */

body.search-result .global-title h1 {
  color: #fff;
}

body.search-result .global-title h2 {
  font-family: "Oswald";
  font-weight: 900;
  font-size: 55px;
  color: #FF009B;
  margin-top: 15px;
}

body.search-result .blog-content {
  margin-bottom: 0px;
}

body.search-result .blog-content > div.sitebar {
  padding-top: 0px;
}

.t-shirt-image {
  height: 800px;
}

.t-shirt-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
}

.t-shirt-description {
  padding: 40px 5px 94px;
  text-align: center;
}

.t-shirt-description a:hover h2 {
  color: #FF009B;
}

.t-shirt-description h2 {
  font-family: "Oswald";
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.t-shirt-description p {
  font-size: 18px;
  line-height: 30px;
  color: #999;
  text-align: left;
}

.t-shirt-description .post-cta {
  margin-top: 70px;
}

/* =================================================  */

/* SEARCH RESULT END */

/* =================================================  */

/* =================================================  */

/* SHOP */

/* =================================================  */

body.shop #shop-contanier > .section {
  max-width: 1725px;
  overflow: hidden;
}

.results:after {
  content: "";
  display: block;
  clear: both;
}

.results {
  padding: 0px 35px 45px 35px;
}

.results-text {
  font-family: "Open Sans";
  float: left;
  margin-top: 15px;
}

.results-text * {
  font-size: 20px;
  line-height: 30px;
  color: #999;
}

.results-select {
  float: right;
}

.results-select .btn-primary {
  font-family: "Open Sans";
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0);
  border-color: #FF009B;
  color: #999;
  padding: 10px 54px 10px 40px;
  border-radius: 10px;
}

.results-select .dropdown-toggle::after {
  color: #FF009B;
  vertical-align: 0.2em;
}

.results-select .btn-primary:not(:disabled):not(.disabled):active,
.results-select .btn-primary:not(:disabled):not(.disabled).active,
.results-select .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #FF009B;
  border-color: #FF009B;
}

.results-select .btn-primary:not(:disabled):not(.disabled):active:after,
.results-select .btn-primary:not(:disabled):not(.disabled).active:after,
.results-select .show > .btn-primary.dropdown-toggle:after {
  color: #fff;
}

.results-select .btn-primary:focus {
  outline: none;
  box-shadow: none !important;
}

.results-select .dropdown-menu.show {
  background: rgb(27, 27, 27);
  width: 100%;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate3d(0px, 61px, 0px) !important;
  -moz-transform: translate3d(0px, 61px, 0px) !important;
  transform: translate3d(0px, 61px, 0px) !important;
}

.results-select .dropdown-menu {
  display: block !important;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  background-color: rgb(27, 27, 27);
  border-color: #FF009B;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  -webkit-transform: translate3d(0px, 80px, 0px) !important;
  -moz-transform: translate3d(0px, 80px, 0px) !important;
  transform: translate3d(0px, 80px, 0px) !important;
}

.results-select .dropdown-item,
#checkout-list form .form-group .chosen-results li {
  color: #6a6a6a;
  padding: 7px 20px;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

#checkout-list form .form-group .chosen-results li {
  font-size: 16px;
  cursor: pointer;
}

.results-select .dropdown-item:hover,
.results-select .dropdown-item:focus,
#checkout-list form .form-group .chosen-results li:hover,
#checkout-list form .form-group .chosen-results li:focus {
  background-color: #FF009B;
  color: #fff;
}

.results-select .dropdown-item:hover a,
.results-select .dropdown-item:focus a {
  color: #fff;
}

.results-select .dropdown-item a {
  display: block;
  color: #6a6a6a;
}

.shop-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.s-item {
  position: relative;
  margin-bottom: 70px;
  padding: 0px 35px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333333%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.s-item-image {
  overflow: hidden;
}

.s-item:hover .s-item-image img {
  -webkit-transform: rotate(5deg) scale(1.1);
  -moz-transform: rotate(5deg) scale(1.1);
  -ms-transform: rotate(5deg) scale(1.1);
  -o-transform: rotate(5deg) scale(1.1);
  transform: rotate(5deg) scale(1.1);
}

.s-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.s-item-name {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.s-item-name h2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: #fff;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

.s-item:hover .s-item-name h2 {
  color: #FF009B;
}

.s-item-name p {
  font-size: 20px;
  font-weight: 500;
  color: #FF009B;
}

.sale {
  position: relative;
  font-size: 18px;
  color: #999;
}

span.sale:after {
  content: "";
  width: 75%;
  height: 1px;
  background-color: #999;
  display: block;
  position: absolute;
  left: 0;
  bottom: 12px;
}

.sale sup {
  position: relative;
}

.sale sup:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #999;
  display: block;
  position: absolute;
  left: 2px;
  top: 10px;
}

.ad-to-card-button {
  margin-top: 28px;
}

.ad-to-card-button a {
  font-size: 15px;
  color: #999;
  border: 1px solid #999;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0px 2px;
}

.ad-to-card-button a.view-cart {
  border: none;
  padding: 0px 0px 0px 10px;
}

.ad-to-card-button a.view-cart:hover {
  background-color: transparent;
}

.ad-to-card-button a:hover {
  color: #fff;
  border-color: #FF009B;
  background-color: #FF009B;
}

.best-offer {
  width: 105px;
  height: 105px;
  position: absolute;
  top: -60px;
  left: 35px;
  z-index: 9;
  padding-top: 25px;
  background-repeat: no-repeat;
  background-size: contain;
}

.best-offer * {
  color: #fff;
  letter-spacing: 2px;
  -webkit-transform: rotate(-35deg);
  -moz-transform: rotate(-35deg);
  -ms-transform: rotate(-35deg);
  -o-transform: rotate(-35deg);
  transform: rotate(-35deg);
}

.best-offer h4 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 22px;
  font-weight: bold;
  margin: 0px 30px auto auto;
}

.best-offer p {
  font-size: 18px;
  font-weight: bold;
  margin: -8px auto auto 25px;
}

.best-offer hr {
  width: 18px;
  height: 4px;
  min-height: 4px;
  border: none;
  background-color: #fff;
  border-radius: 8px;
  margin: 3px 27px auto auto;
}

.comment-form-rating {
  margin-bottom: 35px;
}

.comment-form-rating > label {
  color: #7b7b7b;
  margin-bottom: 0;
}

.comment-form-rating p.stars a {
  color: #fff;
  cursor: auto;
}

.comment-form-rating p.stars a i {
  color: #fff;
}

.comment-form-rating p.stars a.star-1 i,
.comment-form-rating p.stars a.star-2 i,
.comment-form-rating p.stars a.star-3 i {
  color: #f5c314;
}

/* =================================================  */

/* SHOP END */

/* =================================================  */

/* =================================================  */

/* CHECKOUT */

/* =================================================  */

#checkout-list form h3 {
  font-size: 30px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 17px;
}

#checkout-list form .form-group {
  margin-bottom: 23px;
}

.add-info {
  margin-top: 50px;
}

#checkout-list form .form-group label {
  font-size: 18px;
  color: #999;
  margin-bottom: 11px;
}

#checkout-list form .form-group input,
#checkout-list form .form-group textarea {
  font-size: 18px;
  background-color: rgb(38, 38, 38);
  color: #959595;
  text-transform: capitalize;
  border: none;
  height: 60px;
  border-radius: 10px;
}

#checkout-list form .form-group textarea {
  height: auto;
}

#checkout-list form .form-group input:focus,
#checkout-list form .form-group textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

#checkout-list form .form-group a.bfh-selectbox-toggle {
  background-color: rgb(38, 38, 38);
  color: #959595;
  text-transform: capitalize;
  border: none;
  height: 60px;
  border-radius: 5px;
}

#checkout-list form .form-group a.bfh-selectbox-toggle:after {
  color: #959595;
  vertical-align: 0.2em;
  content: "\f107 ";
  font-family: fontawesome;
  border: none;
  position: absolute;
  font-size: 26px;
  right: 20px;
  top: 20%;
}

#checkout-list form .form-group a.bfh-selectbox-toggle:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

#checkout-list
  form
  .form-group
  a.bfh-selectbox-toggle
  span.bfh-selectbox-option {
  font-size: 19px;
  color: #959595;
  height: 100%;
  padding-top: 10px;
}

#checkout-list form .form-group .bfh-selectbox .bfh-selectbox-options {
  background-color: rgb(38, 38, 38);
  width: 100%;
  border: none;
  box-shadow: none;
  border-radius: 5px;
}

#checkout-list form .form-group .bfh-selectbox .bfh-selectbox-options ul {
  max-height: 290px;
  margin: 0;
  width: 99%;
  max-width: 100%;
}

#checkout-list
  form
  .form-group
  .bfh-selectbox
  .bfh-selectbox-options
  ul
  li
  > a {
  font-size: 19px;
  color: #959595;
  padding: 4px 10px;
}

#checkout-list
  form
  .form-group
  .bfh-selectbox
  .bfh-selectbox-options
  ul
  li
  > a:hover,
#checkout-list
  form
  .form-group
  .bfh-selectbox
  .bfh-selectbox-options
  ul
  li
  > a:focus {
  background-color: rgb(42, 196, 183);
  color: #fff;
}

#checkout-list
  form
  .form-group
  .bfh-selectbox
  .bfh-selectbox-options
  ul::-webkit-scrollbar-track,
#checkout-list form .form-group .chosen-results::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  background-color: rgb(27, 27, 27);
  border-radius: 5px;
}

#checkout-list
  form
  .form-group
  .bfh-selectbox
  .bfh-selectbox-options
  ul::-webkit-scrollbar,
#checkout-list form .form-group .chosen-results::-webkit-scrollbar {
  width: 3px;
  background-color: #FF009B;
  border-radius: 5px;
}

#checkout-list
  form
  .form-group
  .bfh-selectbox
  .bfh-selectbox-options
  ul::-webkit-scrollbar-thumb,
#checkout-list form .form-group .chosen-results::-webkit-scrollbar-thumb {
  background-color: #FF009B;
  border-radius: 5px;
}

#checkout-list form .form-group .results-select {
  float: none;
}

#checkout-list form .form-group .results-select .btn-group {
  width: 100%;
}

#checkout-list form .form-group .results-select .btn-primary,
#checkout-list form .form-group .chosen-single {
  font-size: 19px;
  padding: 16px 20px 16px 20px;
  background-color: rgb(38, 38, 38);
  color: #959595;
  text-transform: capitalize;
  border: none;
  border-radius: 10px;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
}

#checkout-list form .form-group .chosen-single {
  height: 60px;
}

#checkout-list form .form-group .results-select .dropdown-toggle::after,
#checkout-list form .form-group .chosen-single:after {
  color: #959595;
  vertical-align: 0.2em;
  content: "\f107 ";
  font-family: fontawesome;
  border: none;
  position: absolute;
  font-size: 26px;
  right: 36px;
  top: 22%;
}

#checkout-list form .form-group .results-select .dropdown-menu {
  background-color: rgb(38, 38, 38);
  border: none;
  border-radius: 5px;
}

#checkout-list form .form-group .chosen-results {
  background-color: rgb(38, 38, 38);
  border: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 380px;
  overflow-y: scroll;
  margin-top: 1px;
}

.chosen-search:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("../images/search-2.svg");
  position: absolute;
  top: 24px;
  right: 35px;
  z-index: 99;
  background-size: cover;
}

#checkout-list form .form-group .results-select .dropdown-item a {
  color: #959595;
}

#checkout-list form .form-group .results-select .dropdown-item:hover a,
#checkout-list form .form-group .results-select .dropdown-item:focus a {
  color: #fff;
}

#checkout-list form .form-group .results-select > p {
  font-size: 18px;
  line-height: 30px;
  color: #868686;
  margin-bottom: 11px;
  margin-top: 20px;
}

.payment-method {
  margin-top: 50px;
}

.payment-method .custom-radio {
  padding-left: 60px;
}

.payment-method .custom-radio.ubs {
  margin-top: 30px;
}

.pay-text {
  clear: both;
}

.custom-control-label {
  cursor: pointer;
}

.pay-text p {
  color: #656565;
  font-size: 16px;
  line-height: 22px;
  padding-top: 10px;
  font-style: italic;
}

.payment-method .custom-radio > label span {
  font-size: 18px;
  line-height: 30px;
  color: #999;
  margin-bottom: 18px;
}

.payment-method .custom-radio label div.payment-cart-paypal {
  padding: 0;
  border: none;
}

.payment-method .custom-control.custom-radio.paypal {
  margin-top: 30px;
}

.payment-method .custom-control.custom-radio.paypal:after {
  content: "";
  display: block;
  clear: both;
}

.payment-method .custom-control.custom-radio.paypal label {
  float: left;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0px #fff, 0 0 0 0rem rgba(0, 123, 255, 0) !important;
}

.payment-method .custom-control.custom-radio.paypal label:after,
.payment-method .custom-control.custom-radio.paypal label:before {
  top: 18px;
}

.payment-method
  .custom-control.custom-radio.paypal
  .custom-control-input:checked
  ~ .custom-control-label::after {
  top: 25px;
}

.payment-method .custom-radio label:before,
.payment-method .custom-radio label:after {
  left: -60px;
  top: 0px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.payment-method .custom-radio label:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.payment-method
  .custom-radio
  .custom-control-input:checked
  ~ .custom-control-label::before {
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
}

.payment-method .custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
}

.payment-method .custom-control-label::before {
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
  height: 30px;
  width: 30px;
  top: -45px;
}

.payment-method
  .custom-radio
  .custom-control-input:checked
  ~ .custom-control-label::after {
  background-image: none;
  width: 16px;
  height: 16px;
  background-color: #FF009B;
  border-radius: 50%;
  left: -53px;
  top: 7px;
}

.payment-method .other-payment .custom-control-label::before {
  top: 0px;
}

.payment-method
  .custom-radio.other-payment
  .custom-control-input:checked
  ~ .custom-control-label::after {
  top: 7px;
}

.what-is-paypal {
  margin-left: 15px;
  float: left;
}

.what-is-paypal a {
  font-size: 18px;
  color: #868686;
  text-decoration: underline;
  margin-top: 15px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.what-is-paypal img {
  margin-left: 5px;
}

.payment-method .custom-control.custom-radio.other-payment {
  margin-top: 30px;
}

.other-payment label {
  padding: 10px;
  border: 1px solid #9b9b9b;
  border-radius: 7px;
  background-color: rgb(38, 38, 38);
  max-width: 253px;
}

.other-payment label img {
  float: left;
  margin: 0px 4px 5px 4px;
}

.other-payment label img:first-child {
  margin: 0px 72px 5px;
}

.other-payment label img:nth-child(2) {
  clear: both;
}

.other-payment label img:last-child {
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.4117647058823529);
  border-radius: 2px;
}

.p-carts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-carts img {
  margin: 5px;
}

.p-carts div {
  width: 68px;
  height: 42px;
  margin: 5px;
  border: 1px solid #9b9b9b;
  border-radius: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.create-password {
  margin-top: 60px;
}

.create-password .form-group p {
  font-size: 19px;
  color: #5f5f5f;
  margin-bottom: 24px;
  line-height: 21px;
  margin-top: 14px;
}

.create-password .checkbox label span {
  font-size: 18px;
  line-height: 30px;
  color: #999;
  margin-bottom: 17px;
  text-transform: uppercase;
}

.shipping-method .results-select .dropdown-menu {
  -webkit-transform: translate3d(0px, 80px, 0px) !important;
  -moz-transform: translate3d(0px, 80px, 0px) !important;
  transform: translate3d(0px, 80px, 0px) !important;
}

.shipping-method .results-select .dropdown-menu.show {
  -webkit-transform: translate3d(0px, 61px, 0px) !important;
  -moz-transform: translate3d(0px, 61px, 0px) !important;
  transform: translate3d(0px, 61px, 0px) !important;
}

.create-password .checkbox label {
  cursor: pointer;
}

.create-password .checkbox label input[type="checkbox"] {
  display: none;
}

.create-password .checkbox label input[type="checkbox"] + .label-text:before {
  display: inline-block;
  transition: all 0.2s ease-in-out;
  margin: -6px 30px 0 0;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 7px;
  content: "";
}

.create-password
  .checkbox
  label
  input[type="checkbox"]:checked
  + .label-text:before {
  content: "\f00c";
  font-family: fontawesome;
  font-size: 18px;
  text-align: center;
  line-height: 26px;
  color: #FF009B;
}

#checkout-list {
  padding-bottom: 50px;
}

#checkout-list.table th,
.table td {
  border-top: 1px solid #5f5f5f;
}

#checkout-list table.table {
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 24px;
  margin-bottom: 24px;
}

.privacy-policy p {
  font-size: 18px;
  margin-bottom: 24px;
  color: #656565;
}

.privacy-policy a {
  color: #656565;
}

.privacy-policy a:hover {
  color: #FF009B;
}

#checkout-list table.table tr th,
#checkout-list table.table tr td {
  padding: 20px 30px;
}

#checkout-list table.table tr td {
  font-size: 18px;
  color: #999;
}

#checkout-list table.table tr th {
  font-size: 18px;
  text-transform: capitalize;
  color: #999;
}

#checkout-list table.table tr th span {
  color: #999;
  margin-left: 10px;
}

#checkout-list table.table tr th:first-child,
#checkout-list table.table tr td:first-child {
  border-left: 1px solid #5f5f5f;
}

#checkout-list table.table tr th:last-child,
#checkout-list table.table tr td:last-child {
  border-right: 1px solid #5f5f5f;
  text-align: right;
}

#checkout-list table.table tr th {
  border-top: 1px solid #5f5f5f;
  text-align: left;
}

#checkout-list table.table tr:first-child th {
  border-bottom: 0px;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: #ffffff;
}

/* top-left border-radius */

#checkout-list table.table tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

/* top-right border-radius */

#checkout-list table.table tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

#checkout-list table.table tbody tr:last-child th {
  background-color: #5f5f5f;
}

/* bottom-left border-radius */

#checkout-list table.table tbody tr:last-child th:first-child {
  border-bottom-left-radius: 10px;
  border-bottom: 1px solid #5f5f5f;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  padding-top: 29px;
}

/* bottom-right border-radius */

#checkout-list table.table tbody tr:last-child th:last-child {
  border-bottom-right-radius: 10px;
  border-bottom: 1px solid #5f5f5f;
  font-size: 35px;
  color: #fff;
  font-weight: 100;
}

#checkout-list form button.btn-primary {
  font-family: "Oswald";
  width: 100%;
  font-size: 20px;
  background-color: transparent;
  border-radius: 5px;
  border-color: #FF009B;
  color: #fff;
  text-transform: uppercase;
  padding-top: 24px;
  padding-bottom: 23px;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}

#checkout-list form button.btn-primary:hover {
  background-color: #FF009B;
  color: #fff;
}

#checkout-list form button.btn-primary:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.login-and-cupon {
  margin-bottom: 70px;
}

.login-and-cupon .form-group {
  padding-left: 0;
}

.login-and-cupon a.btn-primary {
  background-color: transparent;
  border: none;
  padding: 0;
}

.login-and-cupon a.btn-primary:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.login-and-cupon a.btn-primary:not(:disabled):not(.disabled):active,
.login-and-cupon a.btn-primary:not(:disabled):not(.disabled).active {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.to-login {
  margin-bottom: 14px;
}

.l-b *,
.c-b * {
  font-size: 20px;
  line-height: 30px;
  color: #999;
}

.l-b i,
.c-b i {
  color: #FF009B;
  margin-right: 5px;
}

.l-b a,
.c-b a {
  display: inline-block;
  color: #fff;
  margin-left: 6px;
  margin-top: -3px;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: rgb(255, 255, 255);
}

.l-b a:hover,
.c-b a:hover {
  color: #FF009B;
}

.l-form {
  padding: 15px 15px 30px 0px;
  border-radius: 5px;
  margin-top: 10px;
}

.l-f form p {
  font-size: 18px;
  line-height: 30px;
  color: #5f5f5f;
}

.l-f form .create-password {
  margin-top: 0px;
}

.l-f
  form
  .create-password
  .checkbox
  label
  input[type="checkbox"]
  + .label-text:before {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  margin-right: 5px;
  margin-top: -4px;
}

.l-f form .create-password .checkbox label span {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
  text-transform: capitalize;
}

.l-f
  form
  .create-password
  .checkbox
  label
  input[type="checkbox"]:checked
  + .label-text:before {
  font-size: 10px;
  line-height: 12px;
}

.l-f form .create-password .checkbox label {
  margin-bottom: 0;
  margin-top: 8px;
  margin-left: 10px;
}

#checkout-list .l-f form button.btn-primary {
  font-size: 16px;
  padding-top: 11px;
  padding-bottom: 9px;
  width: 210px;
  max-width: 210px;
}

.l-form > a {
  font-size: 19px;
  color: #959595;
  margin-top: 20px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.l-form > a:hover {
  color: #FF009B;
}

.c-f .l-form form {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

.coupon-btn {
  margin-bottom: 0px;
}

#checkout-list .c-f form button.btn-primary {
  font-size: 16px;
  padding-top: 11px;
  padding-bottom: 9px;
  margin-top: 15px;
  width: 210px;
  max-width: 210px;
}

/* =================================================  */

/* CHECKOUT END */

/* =================================================  */

/* =================================================  */

/* SINGLE PRODUCT */

/* =================================================  */

body.single-product #single-product-section > .section {
  max-width: 1725px;
  overflow: hidden;
}

html.magnifying > body {
  overflow-x: hidden !important;
}

.shop-view-cart {
  padding: 0px 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}

.name-title * {
  font-size: 20px;
}

.name-title i {
  color: #FF009B;
  margin-right: 10px;
}

.name-title span {
  color: #999;
}

.single-product .ad-to-card-button a {
  color: #999;
  border-color: #999;
  font-weight: 600;
}

.single-product .ad-to-card-button a:hover {
  color: #fff;
  border-color: #FF009B;
}

.shop-view-cart .ad-to-card-button {
  margin-top: 0px;
}

.single-image {
  padding: 0px 20px 0px 35px;
}

.product-description {
  padding: 20px 35px 0px 20px;
}

.magnify,
.magnify > .magnify-lens,
.magnify-mobile,
.lens-mobile {
  /* Reset */
  min-width: 0;
  min-height: 0;
  animation: none;
  border: none;
  float: none;
  margin: 0;
  opacity: 1;
  outline: none;
  overflow: visible;
  padding: 0;
  text-indent: 0;
  transform: none;
  transition: none;
}

.magnify {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: none;
  display: inline-block;
  z-index: inherit;
}

.magnify > .magnify-lens {
  /* Magnifying lens */
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  /* Multiple box shadows to achieve the glass lens effect */
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85),
    0 0 7px 7px rgba(0, 0, 0, 0.25), inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
  cursor: none;
  display: none;
  z-index: 99;
}

.magnify > .magnify-lens.loading {
  background: #333 !important;
  opacity: 0.8;
}

.magnify > .magnify-lens.loading:after {
  /* Loading text */
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  color: #fff;
  content: "Loading...";
  font: italic normal 16px/1 Calibri, sans-serif;
  letter-spacing: 1px;
  margin-top: -8px;
  text-align: center;
  text-shadow: 0 0 2px rgba(51, 51, 51, 0.8);
  text-transform: none;
}

.product-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  padding: 30px 0px;
}

.product-image > a {
  width: 75%;
}

.magnify img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.single-pr-name h3 {
  font-family: "Oswald";
  font-size: 40px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
}

.single-price p {
  font-family: "Oswald";
  font-size: 30px;
  color: #FF009B;
  font-weight: 300;
  margin-top: 17px;
}

.single-price .sale {
  font-family: "Open Sans";
  font-size: 26px;
  margin-left: 38px;
}

.single-price span.sale:after {
  width: 100%;
  bottom: 17px;
}

.single-style a {
  color: #ebebeb;
}

.single-style a:hover {
  color: #FF009B;
}

.single-star:after {
  content: "";
  display: block;
  clear: both;
}

.single-star ul:after {
  content: "";
  display: block;
  clear: both;
}

.single-star ul li {
  float: left;
  margin-right: 10px;
}

.single-star ul i {
  font-size: 25px;
  color: #f5c314;
}

.single-star ul li:last-child i {
  color: #fff;
}

.single-button-count:after {
  content: "";
  display: block;
  clear: both;
}

.single-button-count {
  margin-bottom: 20px;
}

.catd-button {
  float: left;
  margin-top: 15px;
  margin-right: 25px;
}

.catd-button a {
  position: relative;
  font-size: 15px;
  color: #fff;
  border: 2px solid #FF009B;
  border-radius: 7px;
  padding: 14px 50px 15px 85px;
}

.catd-button a:hover {
  background-color: #FF009B;
  color: #fff;
}

.catd-button a img {
  position: absolute;
  left: 25px;
  top: 12px;
}

.single-button-count .plusminus {
  position: relative;
  float: left;
  width: 135px;
  height: 52px;
  border-radius: 3px;
}

.single-button-count .plusminus button {
  width: 40px;
  height: 52px;
}

.single-button-count .plusminus input[type="number"] {
  left: 40px;
  height: 52px;
  font-size: 20px;
  font-weight: 400;
}

.single-text {
  margin-top: 15px;
}

.single-text * {
  font-size: 18px;
  line-height: 30px;
  color: #999;
  margin-bottom: 17px;
}

.single-code * {
  font-size: 16px;
  color: #999;
}

.single-product .sale {
  color: #999;
}

.single-product span.sale:after {
  background-color: #999;
}

.single-code {
  margin-top: 15px;
}

.sku {
  color: #999;
}

.single-code p > span {
  margin-right: 3px;
}

.single-tab-content .tab-content .fade:not(.show) {
  opacity: 1;
}

.single-tab-content {
  padding: 0px 35px;
  margin-top: 70px;
}

.single-tab-content .nav-tabs {
  border-bottom: 2px solid #ebebeb;
}

.single-tab-content .nav-tabs .nav-item {
  margin-bottom: -3px;
}

.single-tab-content .nav-tabs .nav-link {
  font-size: 12px;
  color: #ebebeb;
  padding: 0px 0px 12px;
  border: 0px;
  border-bottom: 5px solid transparent;
  font-weight: 600;
}

.single-product .author-name-date p:nth-of-type(1) {
  color: #fff;
}

.single-product .author-name-date p:nth-of-type(2) {
  color: #868686;
}

.single-product .author-info em {
  color: #fff;
}

.single-product .author-description p {
  color: #999;
}

.single-tab-content .nav-tabs .nav-item:last-child .nav-link {
  padding-left: 24px;
  padding-right: 24px;
  margin-left: 30px;
}

.single-tab-content .nav-tabs .nav-link:hover,
.single-tab-content .nav-tabs .nav-link:focus {
  border-color: #FF009B;
  color: #FF009B;
}

.single-tab-content .nav-tabs .nav-link.active,
.single-tab-content .nav-tabs .nav-item.show .nav-link {
  background-color: transparent;
  border-color: #FF009B;
  color: #FF009B;
}

.single-tab-content .tab-content {
  margin-top: 45px;
}

.first-tab-pane * {
  font-size: 18px;
  line-height: 30px;
  color: #999;
  margin-bottom: 20px;
}

body.single-product #releated-products {
  background-color: rgb(18, 18, 18);
  padding-top: 70px;
  margin-top: 70px;
}

body.single-product #releated-products > .section {
  max-width: 1725px;
  overflow: hidden;
}

.related-product-title {
  padding: 0px 35px;
  margin-bottom: 70px;
}

.related-product-title h3 {
  font-family: "Oswald";
  font-size: 30px;
  font-weight: 400;
  color: #FF009B;
  letter-spacing: 5px;
  text-transform: uppercase;
}

#single-product-section #blog-post .form h2 {
  text-align: left;
  color: #fff;
}

.single-tab-content #blog-post .form {
  margin-top: 70px;
}

.single-product .form form input:focus,
.single-product .form form textarea:focus {
  border-color: #FF009B;
}

.single-product .form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
}

.single-product .form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
}

.single-product .form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
}

.single-product .form input:-moz-placeholder {
  /* Firefox 18- */
  color: #999;
}

.single-product .form textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
}

.single-product .form textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
}

.single-product .form textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
}

.single-product .form textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #999;
}

.single-product #blog-post .form .btn-primary {
  border-color: #FF009B;
  color: #fff;
}

.single-product #blog-post .form .btn-primary:hover {
  color: #fff;
}

/* =================================================  */

/* SINGLE PRODUCT END */

/* =================================================  */

/* =================================================  */

/* HOME DEMO 2 */

/* =================================================  */

body.demo-2-bg {
  background-color: rgb(18, 17, 17);
}

.home-demo-2 .menu_icon {
  display: none;
}

.nav-demo-1 {
  display: none;
}

#header .nav-menu.nav-demo-2 {
  display: block;
  position: inherit;
  padding: 0;
  background-color: transparent;
  transform: none;
  height: auto;
}

#header .nav-menu.nav-demo-2 .nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: inherit !important;
  -moz-box-orient: vertical !important;
  -moz-box-direction: normal !important;
  -ms-flex-direction: inherit !important;
  flex-direction: inherit !important;
  position: initial;
  height: auto;
  overflow: initial;
  text-align: center;
}

#header .nav-menu.nav-demo-2 .nav > li {
  width: auto;
  border-left: none;
  display: inline-block;
  margin: 0px 10px;
  padding: 30px 0px;
}

#header .nav-menu.nav-demo-2 .nav > li.nav-logo {
  padding: 0px;
}

#header .nav-menu.nav-demo-2 .nav > li > a {
  color: #fff;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 0px 17px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
}

#header .nav-menu.nav-demo-2 .nav > li:hover a {
  color: #FF009B;
}

#header .nav-menu.nav-demo-2 .nav > li ul.child-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  left: -28%;
  top: 89px;
  padding: 0px 15px 5px;
  display: block;
  background-color: rgb(15, 22, 23);
  visibility: hidden;
  opacity: 0;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  -webkit-transform: translate3d(0px, 20px, 0px) !important;
  -moz-transform: translate3d(0px, 20px, 0px) !important;
  transform: translate3d(0px, 20px, 0px) !important;
}

#header .nav-menu.nav-demo-2 .nav > li ul.child-item:after {
  content: none;
}

#header .nav-menu.nav-demo-2 .nav > li:hover ul.child-item {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate3d(0px, 0px, 0px) !important;
  -moz-transform: translate3d(0px, 0px, 0px) !important;
  transform: translate3d(0px, 0px, 0px) !important;
}

.home-demo-2 .header-continer.active {
  padding-bottom: 0;
}

#header .header-continer.active .nav-menu.nav-demo-2 .nav > li > a {
  font-size: 16px;
}

#header .header-continer.active .nav-menu.nav-demo-2 .nav > li ul.child-item {
  top: 86px;
}

#header .nav-menu.nav-demo-2 .nav > li ul.child-item > li a {
  display: block;
  color: #fff;
  white-space: nowrap;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

#header
  .header-continer.active
  .nav-menu.nav-demo-2
  .nav
  > li
  ul.child-item
  > li
  a:hover {
  color: #FF009B;
}

#header .nav-menu.nav-demo-2 .nav > li ul.child-item > li a:hover {
  color: #FF009B;
}

.home-demo-2 .header_items {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

#my-music {
  position: relative;
  background-color: rgb(42, 42, 42);
  padding-bottom: 145px;
}

#my-music .music-banner {
  padding: 0px;
}

#my-music > div.section > div.row {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#about-me {
  position: relative;
  padding-bottom: 115px;
  background-color: rgb(42, 42, 42);
}

#about-me .section_bg_image {
  background-size: cover;
  background-position: 0% 40%;
  opacity: 0.9;
}

.about-me-content {
  margin-top: 100px;
}

.about-me-content * {
  font-size: 18px;
  color: #fff;
  text-align: justify;
  line-height: 35px;
}

.signature {
  margin-top: 110px;
  text-align: right;
}

.home-demo-2 #testimonials .section_bg_image {
  opacity: 1;
  background-size: cover;
}

/* =================================================  */

/* HOME DEMO 2 END */

/* =================================================  */

/**************** BODY CSS END *******************/

/* ========================================================== */

/*   RESPONSIVE CSS
/* ========================================================== */

@media (max-width: 1820px) {
  .plyr .plyr__volume {
    max-width: 130px;
    margin-right: 30px;
  }
  .plyr__controls > button:last-of-type {
    right: 2%;
  }
  #discography-post .plyr__controls > button:last-of-type {
    right: 1%;
  }
  #discography-post .mp3 .plyr--audio .plyr__controls {
    padding: 41px 20px 43px 4px;
    margin: 46px 0px 48px 0px;
  }
  #discography-post .mp3 .plyr__controls > button:last-of-type {
    top: 43px;
  }
  #discography-post .plyr__controls > button:last-of-type:before {
    right: 415%;
  }
}

@media (max-width: 1690px) {
  #header ul.nav > li > a {
    font-size: 37px;
  }
  #header .nav > li ul.child-item {
    left: 185px;
  }
  .plyr__controls > button:last-of-type {
    right: 3%;
  }
  .plyr__time + .plyr__time {
    margin-right: 50px;
  }
  /***** Single Events *****/
  .event-tickets a {
    padding: 25px 55px 25px;
  }
  .event-tickets a:first-child {
    margin-right: 25px;
  }
  .event-tickets a:last-child {
    padding: 25px 30px;
  }
  /***** Checkout ****/
  #checkout-list table.table tr:first-child th {
    font-size: 16px;
  }
  #checkout-list table.table tr th,
  #checkout-list table.table tr td {
    font-size: 16px;
    padding: 15px;
  }
  #checkout-list table.table tbody tr:last-child th:first-child {
    font-size: 18px;
    padding-top: 21px;
  }
  #checkout-list table.table tbody tr:last-child th:last-child {
    font-size: 26px;
  }
}

@media (max-width: 1600px) {
  #header .nav-menu.nav-demo-2 .nav > li > a {
    padding: 0px 12px;
  }
  #image-gallery .grid > div.grid-item:nth-child(2) {
    width: 50%;
    height: 890px;
  }
  #image-gallery .grid > div.grid-item:nth-child(2n + 1) {
    height: 500px;
  }
  #image-gallery .grid > div.grid-item:nth-child(3n + 1) {
    height: 890px;
  }
  #image-gallery .grid > div.grid-item:last-child {
    height: 390px !important;
  }
}

@media (max-width: 1560px) {
  /***** Cart *****/
  .cart-image {
    width: 200px;
    height: 200px;
    margin-right: 30px;
  }
  .cart-description a,
  .cart-description h2 {
    margin-bottom: 10px;
  }
  .plusminus {
    height: 46px;
  }
  .plusminus button,
  .plusminus input[type="number"] {
    height: 46px;
  }
}

@media (max-width: 1530px) {
  /***** Blog Single Post *****/
  .recent-post-image img,
  .recent-post-image {
    width: 70px;
  }
}

@media (max-width: 1500px) {
  /***** Header *****/
  .logo {
    max-width: 300px;
  }
  #header .nav-menu.nav-demo-2 .nav > li > a {
    padding: 0px 10px;
  }
  .slider-info {
    height: 520px;
    margin-bottom: 430px;
  }
  .background-map {
    top: 20%;
  }
  /***** Search Result *****/
  .t-shirt-image {
    height: 600px;
  }
  /*** Shop ***/
  .results-select .btn-primary {
    padding: 8px 54px 10px 40px;
  }
  .results-select .dropdown-menu {
    -webkit-transform: translate3d(0px, 70px, 0px) !important;
    -moz-transform: translate3d(0px, 70px, 0px) !important;
    transform: translate3d(0px, 70px, 0px) !important;
  }
  .results-select .dropdown-menu.show {
    -webkit-transform: translate3d(0px, 51px, 0px) !important;
    -moz-transform: translate3d(0px, 51px, 0px) !important;
    transform: translate3d(0px, 51px, 0px) !important;
  }
}

@media (max-width: 1450px) {
  #header .nav-menu.nav-demo-2 .nav > li > a {
    font-size: 18px;
  }
  #header .nav-menu.nav-demo-2 .nav > li ul.child-item > li a {
    font-size: 16px;
  }
  #header .nav-menu.nav-demo-2 .nav > li ul.child-item {
    top: 89px;
  }
}

@media (max-width: 1430px) {
  .buy a {
    padding: 11px 30px 10px;
  }
}

@media (max-width: 1400px) {
  #image-gallery .grid > div.grid-item:nth-child(2) {
    width: 50%;
    height: 800px;
  }
  #image-gallery .grid > div.grid-item:nth-child(2n + 1) {
    height: 450px;
  }
  #image-gallery .grid > div.grid-item:nth-child(3n + 1) {
    height: 800px;
  }
  #image-gallery .grid > div.grid-item:last-child {
    height: 350px !important;
  }
  .plyr--audio .plyr__controls {
    padding: 60px 20px 25px 18px;
  }
  .plyr__controls button svg {
    width: 20px;
    height: 20px;
  }
  .plyr__controls > .plyr__time {
    left: 50px;
  }
  .plyr .plyr__progress {
    margin-left: 70px;
  }
  .plyr__time + .plyr__time {
    margin-left: 15px;
    margin-right: 30px;
  }
  .plyr__controls > button:last-of-type {
    right: 4%;
    top: 51%;
  }
  .plyr__controls > button:last-of-type:before {
    font-size: 24px;
    top: 0px;
    right: 380%;
  }
  .plyr__time {
    font-size: 18px;
  }
  .buy a {
    font-size: 21px;
    padding: 11px 33px 11px;
  }
  .name p {
    font-size: 40px;
    line-height: 45px;
  }
  .day_num {
    width: 130px;
    height: 45px;
    line-height: 24px;
  }
  .day_num span {
    font-size: 54px;
  }
  .day_num div p {
    font-size: 22px;
  }
  .social-icons {
    margin-top: 25px;
    margin-bottom: 55px;
    padding-top: 25px;
  }
  .plyr .plyr__volume {
    margin-right: 32px;
    max-width: 100px;
  }
  /***** Blog Mansory *****/
  .grid-item--width2 {
    height: 1140px;
  }
  .grid-item--width1,
  .grid-item--width3,
  .grid-item--width4 {
    height: 570px;
  }
  .grid-item-img:after {
    width: 270px;
    height: 35px;
  }
}

@media (max-width: 1380px) {
  .privacy-policy p {
    font-size: 16px;
  }
  .title h1 {
    font-size: 36px;
  }
  .title p {
    font-size: 14px;
    line-height: 28px;
  }
  .sec_2_content * {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .cta a {
    font-size: 14px;
  }
  .plyr__controls > button:last-of-type {
    top: 53%;
  }
  .mp3_3 .plyr__controls > button:last-of-type {
    top: 52%;
  }
  #news {
    padding-bottom: 59px;
  }
  .n_c * {
    font-size: 18px;
    line-height: 28px;
  }
  .music-banner-text h2 {
    font-size: 26px;
    line-height: 28px;
  }
  .music-banner-text p {
    font-size: 36px;
    line-height: 40px;
  }
  body.gallery-photogallery .dis-name h2 {
    font-size: 36px;
  }
  body.gallery-photogallery .dis-name p {
    font-size: 18px;
    line-height: 28px;
  }
  .header-title h1 {
    font-size: 40px;
  }
  #page-title {
    margin-top: 110px;
    margin-bottom: 55px;
  }
  #header .nav > li {
    width: 165px;
  }
  #header ul.nav > li > a {
    font-size: 25px;
  }
  #header .nav > li ul.child-item {
    left: 155px;
    top: 10%;
  }
  #header .nav > li ul.child-item > li a {
    font-size: 21px;
    line-height: 30px;
  }
  #header .nav-menu.nav-demo-2 .nav > li {
    margin: 0px 5px;
  }
  .logo {
    max-width: 200px;
  }
  .header_items > div {
    height: 24px;
  }
  .title {
    padding-top: 59px;
    padding-bottom: 53px;
  }
  #contact-us {
    padding-bottom: 60px;
  }
  #testimonials {
    padding-bottom: 44px;
  }
  #video {
    padding-bottom: 61px;
  }
  #video .embed-responsive {
    max-width: 1000px;
    border-width: 15px;
  }
  .carousel_content * {
    font-size: 17px;
    line-height: 28px;
  }
  .music_shop {
    margin-bottom: 0px;
  }
  .plyr__controls button svg {
    height: 16px;
  }
  .plyr__time {
    font-size: 16px;
  }
  #discography-post .mp3 .plyr__controls > .plyr__time {
    font-size: 18px;
  }
  .plyr__controls > .plyr__time {
    margin-top: 0px;
    margin-left: 4px;
  }
  .plyr__controls > button:last-of-type:before {
    font-size: 18px;
  }
  .plyr .plyr__volume {
    max-width: 100px;
    margin-right: 30px;
  }
  .plyr .plyr__progress {
    margin-left: 60px;
  }
  .plyr__time + .plyr__time::before {
    top: -1px;
  }
  .mp3 > span {
    font-size: 16px;
    left: 30px;
  }
  .cta {
    margin-top: 40px;
  }
  .cta a {
    font-size: 14px;
  }
  .j_c {
    padding-bottom: 50px;
  }
  #album-release {
    padding-bottom: 33px;
  }
  #on-tour {
    padding-bottom: 60px;
  }
  .day_num {
    line-height: 23px;
    border-right-width: 5px;
  }
  .day_num span {
    font-size: 50px;
  }
  .name p {
    font-size: 35px;
  }
  .row.ticket > div {
    padding: 30px 20px;
  }
  .buy a {
    text-align: center;
    font-size: 18px;
    padding: 9px 25px 10px;
  }
  .news .cta {
    margin-top: 90px;
  }
  .n_c * {
    font-size: 16px;
    line-height: 28px;
  }
  .carousel_content * {
    font-size: 16px;
    line-height: 28px;
  }
  .buy p {
    font-size: 24px;
  }
  #gallery .cta a {
    padding: 24px 25px 26px;
  }
  .news_content {
    padding-top: 52px;
  }
  .news_content h2 {
    font-size: 32px;
  }
  #gallery {
    padding-bottom: 74px;
  }
  #gallery .cta {
    margin-top: 73px;
  }
  .playlist-title h2 {
    font-size: 36px;
  }
  .playlist .music_line > span {
    font-size: 18px;
    line-height: 28px;
  }
  .shop_cta {
    font-size: 14px;
  }
  .video-banner-name h2 {
    font-size: 26px;
  }
  .video-banner-name p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: -4px;
  }
  /***** Gallery *****/
  body.gallery-photogallery #discography .grid-item {
    height: 560px;
  }
  body.gallery-photogallery #discography .grid-item:nth-child(3) {
    height: 790px !important;
  }
  body.gallery-photogallery #discography .grid-item:nth-child(7) {
    height: 580px !important;
  }
  body.gallery-photogallery #discography .grid-item:last-child {
    height: 310px !important;
  }
  body.gallery-photogallery #discography .grid-item:nth-child(3),
  body.gallery-photogallery #discography .grid-item:nth-child(7),
  body.gallery-photogallery #discography .grid-item:last-child {
    padding: 0px 15px;
  }
  body.gallery-photogallery #discography .grid-item {
    margin-bottom: 20px;
  }
  /***** Cart *****/
  .cart-image {
    width: 180px;
    height: 180px;
    margin-right: 20px;
  }
  .enter-coupon,
  .order-button {
    max-width: 430px;
  }
  .cart-buttons a {
    font-size: 16px;
    padding: 14px 35px;
  }
  .cart-buttons a:last-child {
    padding: 14px 47px;
  }
  #cart-order {
    padding-bottom: 42px;
  }
  /******* Music Discography   **********/
  #discography-post {
    margin-top: 55px;
    padding-top: 55px;
  }
  #discography-post .j_c {
    padding-bottom: 35px;
  }
  #discography-post .global-title {
    padding: 53px 0px 110px;
  }
  .global-title h1 {
    font-size: 70px;
  }
  .discography_description * {
    font-size: 16px;
    line-height: 28px;
  }
  body.single-video #discography-text {
    margin-top: 55px;
  }
  body.single-video .social-icons {
    margin-top: 25px;
    margin-bottom: 55px;
  }
  /**** All Events ****/
  .all-events #on-tour {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  /***** Single Events *****/
  .event-tickets a {
    padding: 20px 45px 20px;
  }
  .event-tickets a:last-child {
    padding: 20px 30px;
  }
  .events_date * {
    font-size: 26px;
    line-height: 28px;
  }
  .event-tickets {
    margin-top: 50px;
  }
  .event-text {
    margin-top: 50px;
  }
  .single-events-text p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
  }
  #text-and-video {
    padding: 70px 0px;
  }
  .slider-info {
    margin-bottom: 300px;
  }
  #text-and-video .social-icons {
    margin-top: 25px;
  }
  #map iframe {
    height: 700px;
  }
  .social-icons > span {
    font-size: 16px;
  }
  .social-icons a {
    font-size: 18px;
  }
  /***** Single Gallery *****/
  .sm-title {
    margin-bottom: 55px;
  }
  .sm-title h2 {
    font-size: 26px;
    line-height: 28px;
  }
  /****** Blog Grid ****/
  .grid li {
    padding: 0px 15px 30px 15px;
  }
  .grid figcaption {
    padding: 25px 30px 30px;
  }
  #blog-grid-gallery {
    padding-bottom: 23px;
  }
  /***** Blog Single Post *****/
  .featured-image {
    height: 400px;
    margin-bottom: 30px;
  }
  /**** Blog Standard ****/
  #standard-blog .blog-content {
    padding-bottom: 55px;
  }
  .standard-post-item {
    margin-bottom: 93px;
  }
  /***** Search Result *****/
  .t-shirt-image {
    height: 460px;
  }
  .t-shirt-description {
    padding: 30px 5px 79px;
  }
  .t-shirt-description .post-cta {
    margin-top: 60px;
  }
  body.search-result .global-title h2 {
    font-size: 45px;
  }
  .t-shirt-description h2 {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 30px;
  }
  .t-shirt-description p {
    font-size: 18px;
    line-height: 28px;
  }
  /*** Shop ***/
  .results-select .btn-primary {
    font-size: 18px;
    padding: 8px 30px 8px 25px;
  }
  .best-offer {
    width: 95px;
    height: 95px;
  }
  .best-offer h4 {
    font-size: 18px;
    margin-bottom: 0px;
  }
  .best-offer p {
    font-size: 14px;
  }
  .results-text {
    margin-top: 5px;
  }
  .results-text * {
    font-size: 18px;
    line-height: 28px;
  }
  .s-item-name h2 {
    font-size: 16px;
    line-height: 28px;
  }
  .s-item-name p {
    font-size: 18px;
  }
  .sale {
    font-size: 18px;
  }
  span.sale:after {
    bottom: 11px;
  }
  .sale sup:after {
    top: 9px;
  }
  .ad-to-card-button a {
    font-size: 14px;
  }
  .results-select .dropdown-menu {
    -webkit-transform: translate3d(0px, 70px, 0px) !important;
    -moz-transform: translate3d(0px, 70px, 0px) !important;
    transform: translate3d(0px, 70px, 0px) !important;
  }
  .results-select .dropdown-menu.show {
    -webkit-transform: translate3d(0px, 44px, 0px) !important;
    -moz-transform: translate3d(0px, 44px, 0px) !important;
    transform: translate3d(0px, 44px, 0px) !important;
  }
  .ad-to-card-button a {
    font-size: 14px;
  }
  .related-product-title {
    margin-bottom: 55px;
  }
  /***** Checkout ******/
  #checkout-list .l-f form button.btn-primary {
    padding-top: 9px;
    padding-bottom: 7px;
  }
  #checkout-list .c-f form button.btn-primary {
    margin-top: 22px;
    padding-top: 9px;
    padding-bottom: 7px;
  }
  #checkout-list form .form-group input,
  .chosen-container-single .chosen-search,
  #checkout-list form .form-group .chosen-single {
    height: 50px;
  }
  .chosen-search:after {
    top: 20px;
  }
  #checkout-list form .form-group .results-select .dropdown-toggle::after,
  #checkout-list form .form-group .chosen-single:after {
    top: 16%;
  }
  #checkout-list form .form-group .results-select .btn-primary,
  #checkout-list form .form-group .chosen-single {
    padding: 11px 20px 10px 20px;
  }
  .chosen-container.chosen-with-drop .chosen-drop {
    -webkit-transform: translate3d(0px, -50px, 0px) !important;
    -moz-transform: translate3d(0px, -50px, 0px) !important;
    transform: translate3d(0px, -50px, 0px) !important;
  }
  #checkout-list form .form-group {
    margin-bottom: 15px;
  }
  #checkout-list form .form-group a.bfh-selectbox-toggle {
    height: 50px;
  }
  #checkout-list
    form
    .form-group
    a.bfh-selectbox-toggle
    span.bfh-selectbox-option {
    padding-top: 4px;
  }
  #checkout-list form .form-group .results-select .btn-primary {
    padding: 11px 20px 11px 20px;
  }
  #checkout-list form .form-group .results-select .dropdown-toggle::after {
    top: 14%;
  }
  .shipping-method .results-select .dropdown-menu.show {
    -webkit-transform: translate3d(0px, 51px, 0px) !important;
    -moz-transform: translate3d(0px, 51px, 0px) !important;
    transform: translate3d(0px, 51px, 0px) !important;
  }
  #checkout-list table.table tr th,
  #checkout-list table.table tr td {
    font-size: 15px;
  }
  #checkout-list table.table tbody tr:last-child th:first-child {
    font-size: 16px;
    padding-top: 19px;
  }
  #checkout-list table.table tbody tr:last-child th:last-child {
    font-size: 21px;
  }
  .what-is-paypal {
    margin-left: 8px;
  }
  .what-is-paypal img {
    width: 35px;
  }
  /***** Contact Us *****/
  body.contact-us-page #contact-us {
    padding: 55px 0px 55px;
  }
  .contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .contact-info p {
    font-size: 18px;
    line-height: 28px;
  }
  .contact-adress > a,
  .contact-adress > p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  /***** Single Product *****/
  .product-description {
    padding: 0px 35px 0px 20px;
  }
  .single-price p {
    font-size: 26px;
  }
  .single-style * {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .single-pr-name h3 {
    font-size: 36px;
    line-height: 28px;
  }
  .single-text * {
    font-size: 16px;
    line-height: 28px;
  }
  .single-tab-content .nav-tabs .nav-link {
    font-size: 15px;
  }
  .first-tab-pane * {
    font-size: 16px;
    line-height: 28px;
  }
  body.single-product #releated-products {
    padding-top: 55px;
    margin-top: 25px;
  }
  #releated-products .s-item {
    margin-bottom: 55px;
  }
  .related-product-title h3 {
    font-size: 26px;
  }
  .author-description p {
    font-size: 16px;
    line-height: 28px;
  }
  .single-star ul i {
    font-size: 18px;
  }
  .catd-button {
    margin-top: 12px;
  }
  .catd-button a {
    font-size: 14px;
    padding: 12px 30px 12px 70px;
    border-radius: 3px;
  }
  .catd-button a img {
    left: 25px;
    top: 10px;
    width: 18px;
  }
  .single-button-count .plusminus {
    width: 115px;
    height: 40px;
  }
  .single-button-count .plusminus button {
    height: 40px;
  }
  .single-button-count .plusminus input[type="number"] {
    width: 35px;
    height: 40px;
    font-size: 21px;
  }
  .single-code {
    margin-top: 10px;
  }
  /***** Blog Mansory *****/
  .grid-item--width1 {
    margin-top: -3px;
  }
  body.gallery-single-gallery #discography-text {
    padding-top: 55px;
  }
  .sm-section .discography_description p {
    font-size: 16px;
    line-height: 30px;
  }
  .sm-section .social-icons {
    padding-top: 25px;
    padding-bottom: 55px;
  }
  .grid-gallery figcaption h3 {
    font-size: 26px;
    line-height: 28px;
  }
  .grid-gallery figcaption .post-publish-date {
    font-size: 15px;
  }
  .grid-gallery figcaption p {
    font-size: 16px;
    line-height: 28px;
  }
  .post-heading h2 {
    font-size: 36px;
    line-height: 28px;
  }
  .post-category,
  .post-by * {
    font-size: 15px;
  }
  .post-text p {
    font-size: 16px;
    line-height: 28px;
    margin-top: 30px;
  }
  p.post-quote {
    margin: 50px auto 50px;
  }
  .post-cta a {
    font-size: 14px;
  }
  .see-more a {
    font-size: 14px;
  }
  .author-name-date p:nth-of-type(1) {
    font-size: 18px;
    line-height: 28px;
  }
  .author-name-date p:nth-of-type(2) {
    font-size: 15px;
  }
  .author-info em {
    font-size: 15px;
  }
  .reply {
    font-size: 18px;
    margin-bottom: 55px;
  }
  .author-form-group {
    margin-top: 55px;
    padding: 55px 0px;
  }
  .blog-categories h2,
  .blog-recent-post h2 {
    font-size: 20px;
    line-height: 28px;
  }
  .categories-line {
    font-size: 15px;
    line-height: 28px;
  }
  .recent-post-name h3 {
    font-size: 15px;
    line-height: 20px;
  }
  .recent-post-name span {
    font-size: 12px;
  }
  .g_t h3 {
    font-size: 26px;
    line-height: 28px;
  }
  .g_t p {
    font-size: 18px;
    line-height: 28px;
  }
  .see-more {
    text-align: center;
    margin-top: 79px;
    margin-bottom: 79px;
  }
  .cart-name * {
    font-size: 18px;
    line-height: 28px;
  }
  .cart-description a,
  .cart-description h2 {
    font-size: 26px;
    line-height: 28px;
  }
  .cart-description p {
    font-size: 16px;
    line-height: 28px;
  }
  .product-price * {
    font-size: 26px;
    line-height: 28px;
  }
  .coupon-title h3 {
    font-size: 26px;
    line-height: 28px;
  }
  .coupon-title span {
    font-size: 18px;
    line-height: 28px;
  }
  .order-coupon {
    margin-top: 55px;
  }
  .o-t * {
    font-size: 26px;
    line-height: 28px;
  }
  .g-p * {
    font-size: 36px;
    line-height: 28px;
  }
  .c-t * {
    font-size: 16px;
    line-height: 28px;
  }
  .l-b *,
  .c-b * {
    font-size: 18px;
    line-height: 28px;
  }
  .l-f form p,
  .l-form > a {
    font-size: 18px;
    line-height: 28px;
  }
  .l-f form .create-password .checkbox label span {
    font-size: 18px;
    line-height: 28px;
  }
  #checkout-list form h3 {
    font-size: 26px;
    line-height: 28px;
  }
  #checkout-list form .form-group .results-select > p {
    font-size: 18px;
    line-height: 28px;
  }
  .what-is-paypal a {
    font-size: 16px;
  }
  .create-password .checkbox label span {
    font-size: 18px;
    line-height: 28px;
  }
  .login-and-cupon {
    margin-bottom: 55px;
  }
  #checkout-list {
    padding-bottom: 40px;
  }
  .comment-form-rating {
    margin-bottom: 30px;
  }
}

@media (max-width: 1280px) {
  #header .nav-menu.nav-demo-2 .nav > li ul.child-item {
    top: 86px;
  }
  #header .header-continer.active .nav-menu.nav-demo-2 .nav > li ul.child-item {
    top: 84px;
  }
  #header .nav-menu.nav-demo-2 .nav > li > a {
    font-size: 16px;
  }
  #header .header-continer.active .nav-menu.nav-demo-2 .nav > li > a {
    font-size: 15px;
  }
  #header .nav-menu.nav-demo-2 .nav > li ul.child-item > li a {
    font-size: 14px;
    line-height: 26px;
  }
  #image-gallery .grid > div.grid-item:nth-child(2) {
    width: 50%;
    height: 750px;
  }
  #image-gallery .grid > div.grid-item:nth-child(2n + 1) {
    height: 420px;
  }
  #image-gallery .grid > div.grid-item:nth-child(3n + 1) {
    height: 750px;
  }
  #image-gallery .grid > div.grid-item:last-child {
    height: 330px !important;
  }
}

@media (max-width: 1260px) {
  /***** Videos ****/
  #videos .embed-responsive,
  #videos .video-img-banner {
    height: 210px;
  }
}

@media (max-width: 1180px) {
  .privacy-policy p {
    font-size: 14px;
  }
  .add-info {
    margin-top: 30px;
  }
  #image-gallery .grid > div.grid-item:nth-child(2) {
    width: 50%;
    height: 650px;
  }
  #image-gallery .grid > div.grid-item:nth-child(2n + 1) {
    height: 360px;
  }
  #image-gallery .grid > div.grid-item:nth-child(3n + 1) {
    height: 650px;
  }
  #image-gallery .grid > div.grid-item:last-child {
    height: 290px !important;
  }
  #header .nav-menu.nav-demo-2 .nav > li > a {
    font-size: 12px;
  }
  #header .nav-menu.nav-demo-2 .nav > li ul.child-item {
    top: 84px;
  }
  #header .header-continer.active .nav-menu.nav-demo-2 .nav > li ul.child-item {
    top: 83px;
  }
  #header .header-continer.active .nav-menu.nav-demo-2 .nav > li > a {
    font-size: 14px;
  }
  .about-me-content * {
    font-size: 16px;
    line-height: 30px;
  }
  #about-me {
    padding-bottom: 60px;
  }
  .about-me-content {
    margin-top: 0;
  }
  .signature {
    margin-top: 0;
  }
  #my-music {
    padding-bottom: 60px;
  }
  .header-title h1 {
    font-size: 30px;
  }
  .title h1 {
    font-size: 32px;
    line-height: 35px;
    margin-bottom: 10px;
  }
  .title p {
    font-size: 13px;
    line-height: 26px;
  }
  .sec_2_content {
    padding-right: 30px !important;
    line-height: 26px;
  }
  .sec_2_content * {
    font-size: 14px;
  }
  .plyr .plyr__volume {
    max-width: 74px;
  }
  .plyr .plyr__volume {
    margin-right: 24px;
  }
  .plyr__controls > button:last-of-type:before {
    right: 300%;
  }
  .mp3 > span {
    font-size: 14px;
  }
  .buy a {
    display: block;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 7px;
    font-size: 16px;
  }
  .row.ticket > div {
    padding: 25px 20px;
  }
  .cta a {
    padding: 20px 20px 22px;
    font-size: 12px;
  }
  .mp3_3 .plyr__controls > button:last-of-type {
    top: 52%;
  }
  .plyr__controls > button:last-of-type {
    right: 3%;
  }
  .news .cta a {
    font-size: 12px;
    padding: 20px 13px 20px 20px;
  }
  .n_c {
    margin-bottom: 20px;
  }
  .name p {
    font-size: 32px;
  }
  #gallery .banner_1 > div:first-child {
    padding-bottom: 10px;
  }
  #gallery .banner_1 > div:first-child > div:first-child {
    margin-right: 10px;
  }
  #gallery .banner_1 > div:first-child > div:last-child {
    margin-left: 10px;
  }
  #gallery .banner_1 > div:nth-child(2) {
    padding: 10px 0px;
  }
  #gallery .banner_1 > div:last-child {
    padding-top: 10px;
  }
  .banner_1 {
    padding-right: 10px;
  }
  .banner_2 {
    padding-left: 10px;
  }
  #gallery .banner_2 > div:first-child {
    padding-bottom: 10px;
  }
  #gallery .banner_2 > div:nth-child(2) {
    padding: 10px 0px;
  }
  #gallery .banner_2 > div:last-child {
    padding-top: 10px;
  }
  #gallery .cta a {
    padding: 24px 13px 24px 20px;
  }
  #gallery .banner_1 > div:last-child > div:first-child {
    margin-right: 10px;
  }
  #gallery .banner_1 > div:last-child > div:last-child {
    margin-left: 10px;
  }
  .popup_arrow {
    height: 90px;
    width: 150px;
  }
  .popup_right {
    padding-left: 10px;
  }
  .popup_left {
    padding-right: 10px;
  }
  .popup_arrow i {
    font-size: 24px;
  }
  #gallery .cta {
    margin-top: 71px;
  }
  #news {
    padding-bottom: 54px;
  }
  .news_content h2 {
    font-size: 32px;
  }
  .carousel_content * {
    font-size: 16px;
    line-height: 26px;
    padding: 0px 15px;
  }
  .carousel_content:before {
    width: 30px;
    height: 30px;
    left: -5%;
  }
  .carousel_content:after {
    width: 30px;
    height: 30px;
    right: -5%;
  }
  .n_c * {
    font-size: 14px;
    line-height: 26px;
  }
  .news .cta {
    margin-top: 70px;
  }
  .news_content {
    padding-top: 34px;
    padding-bottom: 61px;
  }
  #testimonials {
    padding-bottom: 60px;
  }
  .flex-control-nav {
    margin-top: 25px;
  }
  .carousel-indicators {
    bottom: -70px;
  }
  .form .btn-primary {
    font-size: 12px;
  }
  .form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 12px;
  }
  .form input::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 12px;
  }
  .form input:-ms-input-placeholder {
    /* IE 10+ */
    font-size: 12px;
  }
  .form input:-moz-placeholder {
    /* Firefox 18- */
    font-size: 12px;
  }
  .form textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 12px;
  }
  .form textarea::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 12px;
  }
  .form textarea:-ms-input-placeholder {
    /* IE 10+ */
    font-size: 12px;
  }
  .form textarea:-moz-placeholder {
    /* Firefox 18- */
    font-size: 12px;
  }
  .form form input,
  .form form textarea {
    font-size: 14px;
  }
  .footer > div:first-child {
    padding-right: 50px;
  }
  .footer > div:first-child p {
    line-height: 26px;
  }
  .footer .day_num > a > p {
    line-height: 26px;
  }
  .info p {
    line-height: 26px;
  }
  .folow {
    margin-top: 15px;
  }
  .folow ul li a {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .carousel_content {
    max-width: 570px;
  }
  .see-more a {
    font-size: 12px;
  }
  #releated-products .s-item {
    margin-bottom: 50px;
  }
  body.single-product #releated-products {
    padding-top: 50px;
    margin-top: 50px;
  }
  .related-product-title {
    margin-bottom: 50px;
    padding: 0px 15px;
  }
  /***** Cart *****/
  .cart-image {
    width: 110px;
    height: 110px;
  }
  .cart-description {
    padding-top: 0px;
  }
  .enter-coupon,
  .order-button {
    max-width: 380px;
  }
  .plusminus {
    width: 96px;
    height: 32px;
  }
  .plusminus button {
    height: 32px;
    width: 30px;
  }
  .plusminus input[type="number"] {
    width: 36px;
    height: 32px;
    left: 30px;
    font-size: 16px;
  }
  .product-price * {
    font-size: 24px;
    line-height: 26px;
  }
  .delete-product svg {
    width: 20px;
    height: 20px;
  }
  .cart-name * {
    font-size: 16px;
    line-height: 26px;
  }
  .cart-description a,
  .cart-description h2 {
    font-size: 24px;
    line-height: 26px;
  }
  .cart-description p {
    font-size: 16px;
    line-height: 26px;
  }
  .g-p * {
    font-size: 32px;
    line-height: 26px;
  }
  .o-t * {
    font-size: 24px;
    line-height: 26px;
  }
  .c-t * {
    font-size: 16px;
    line-height: 26px;
  }
  .coupon-title h3 {
    font-size: 24px;
    line-height: 26px;
  }
  .coupon-title span {
    font-size: 16px;
    line-height: 26px;
  }
  /******* Music Discography   **********/
  #discography-text {
    margin-top: 40px;
  }
  #discography-post .global-title {
    padding: 48px 0px 103px;
  }
  .global-title h1 {
    font-size: 60px;
  }
  .playlist .music_line > span {
    font-size: 16px;
    line-height: 26px;
  }
  #discography-post .mp3 .plyr__controls > .plyr__time {
    font-size: 16px;
  }
  .music-banner-text h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .playlist-title h2 {
    font-size: 32px;
  }
  .music-banner-text p {
    font-size: 16px;
    line-height: 26px;
  }
  .play-pause {
    margin-right: 15px;
  }
  .play-pause svg {
    width: 15px;
    height: 15px;
  }
  .music_date p,
  .music_after p {
    font-size: 14px;
    line-height: 26px;
  }
  #discography-post .plyr__controls button svg {
    height: 16px;
  }
  #discography-post .plyr__controls > button:last-of-type:before {
    right: 290%;
    font-size: 18px;
    top: 0px;
  }
  .shop_cta {
    width: 110px;
    font-size: 12px;
  }
  #discography-post .mp3 .plyr__controls > button:last-of-type {
    top: 31px;
    right: 2%;
  }
  #discography-post .mp3 .plyr .plyr__progress {
    margin-left: 60px;
  }
  #discography-post .mp3 .plyr__controls > .plyr__time {
    left: 34px;
  }
  #discography-post .mp3 .plyr__time + .plyr__time {
    margin-left: 15px;
  }
  #discography-post .mp3 .plyr--audio .plyr__controls {
    padding: 31px 20px 33px 4px;
    margin: 36px 0px 38px 0px;
  }
  #discography-post .mp3 .plyr .plyr__volume {
    max-width: 70px;
    margin-top: 0px;
  }
  .discography_description * {
    font-size: 14px;
    line-height: 26px;
  }
  /***** Single Events *****/
  .events_date * {
    font-size: 24px;
  }
  .events_date p {
    line-height: 26px;
  }
  .events_date i {
    width: 25px;
  }
  #text-and-video {
    margin-top: 50px;
    padding: 50px 0px;
  }
  .slider-info {
    height: 470px;
    margin-bottom: 300px;
  }
  #map img.map-icon {
    width: 50px;
  }
  .background-map {
    top: 20%;
  }
  .events-slider {
    width: 40%;
  }
  .event-tickets {
    margin-top: 40px;
  }
  .event-text {
    margin-top: 40px;
  }
  .single-events-text p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .single-events-text {
    margin-top: -7px;
  }
  .event-tickets {
    margin-top: 50px;
  }
  .event-tickets a {
    font-size: 18px;
  }
  .events-info {
    width: 57%;
  }
  .social-icons > span {
    font-size: 16px;
  }
  .social-icons a {
    font-size: 18px;
  }
  /****Single Video ******/
  .video-banner-name h2 {
    font-size: 24px;
  }
  .video-banner-name p {
    font-size: 16px;
    line-height: 26px;
  }
  body.gallery-photogallery .music-banner-text h2 {
    font-size: 32px;
  }
  body.gallery-photogallery .music-banner-text p {
    font-size: 16px;
    line-height: 26px;
  }
  body.gallery-photogallery #discography .grid-item {
    height: 460px;
  }
  body.gallery-photogallery #discography .grid-item:nth-child(3) {
    height: 690px !important;
  }
  body.gallery-photogallery #discography .grid-item:nth-child(7) {
    height: 480px !important;
  }
  body.gallery-photogallery #discography .grid-item:last-child {
    height: 210px !important;
  }
  /***** Single Gallery *****/
  .sm-title {
    margin-bottom: 50px;
  }
  .sm-title h2 {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 0;
  }
  .sm-section .discography_description p {
    font-size: 14px;
    line-height: 26px;
  }
  body.gallery-single-gallery #discography-text {
    padding-top: 50px;
  }
  /****** Blog Grid ****/
  .grid li:nth-of-type(2) .blog-grid-image,
  .grid li:nth-of-type(4) .blog-grid-image,
  .grid li:nth-of-type(5) .blog-grid-image,
  .grid li:nth-of-type(6) .blog-grid-image,
  .grid li:nth-of-type(7) .blog-grid-image,
  .grid li:nth-of-type(10) .blog-grid-image {
    height: 280px;
  }
  .grid li:nth-of-type(3) .blog-grid-image,
  .grid li:nth-of-type(8) .blog-grid-image,
  .grid li:nth-of-type(9) .blog-grid-image {
    height: 470px;
  }
  .grid-gallery figcaption h3 {
    font-size: 24px;
    line-height: 26px;
  }
  .grid-gallery figcaption p {
    font-size: 14px;
    line-height: 26px;
  }
  .grid-gallery figcaption .post-publish-date {
    font-size: 14px;
  }
  .grid figcaption {
    padding: 25px;
  }
  /***** Blog Single Post *****/
  .blog-search form {
    height: 45px;
  }
  .blog-search form button {
    width: 20%;
  }
  .blog-search form input {
    width: 80%;
  }
  .post-category,
  .post-by * {
    font-size: 12px;
  }
  .post-heading h2 {
    font-size: 32px;
    line-height: 26px;
  }
  .post-text p {
    font-size: 14px;
    line-height: 26px;
    margin: 40px auto 0;
  }
  .post-share span {
    font-size: 14px;
  }
  .post-share a {
    font-size: 16px;
  }
  .author-name-date p:nth-of-type(2) {
    font-size: 14px;
  }
  .author-name-date p:nth-of-type(1) {
    font-size: 16px;
    line-height: 26px;
  }
  .author-info em {
    font-size: 14px;
  }
  .author-description p {
    font-size: 14px;
    line-height: 26px;
  }
  .reply {
    font-size: 16px;
  }
  #blog-post .form h2 {
    font-size: 18px;
  }
  .blog-categories h2,
  .blog-recent-post h2 {
    font-size: 18px;
    line-height: 26px;
  }
  .categories-line {
    font-size: 12px;
    line-height: 26px;
  }
  .recent-post-name h3 {
    font-size: 12px;
    line-height: 18px;
  }
  .recent-post-name span {
    font-size: 10px;
  }
  /**** Blog Standard ****/
  .standard-post-item {
    margin-bottom: 72px;
  }
  .post-cta a {
    font-size: 12px;
    padding: 24px 13px 24px 20px;
  }
  /**** Contact us *****/
  .contact-info {
    width: 70%;
  }
  .contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .contact-info p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 0px;
  }
  .contact-adress {
    margin-top: 35px;
    margin-bottom: 45px;
  }
  .contact-adress > a,
  .contact-adress > p {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .contact-adress > a i,
  .contact-adress > p i {
    width: 23px;
    margin-right: 15px;
  }
  /***** Search Result *****/
  body.search-result .global-title h2 {
    font-size: 30px;
    margin-top: 15px;
  }
  .t-shirt-description h2 {
    font-size: 24px;
    line-height: 26px;
  }
  .t-shirt-description p {
    font-size: 16px;
    line-height: 26px;
  }
  /***** Shop *****/
  .results-text * {
    font-size: 16px;
    line-height: 26px;
  }
  .s-item-name h2 {
    font-size: 16px;
    line-height: 26px;
  }
  .results-select .btn-primary {
    font-size: 16px;
  }
  .results {
    padding: 0px 15px 45px 15px;
  }
  .best-offer {
    width: 70px;
    height: 70px;
    top: -45px;
    left: 15px;
    padding-top: 20px;
  }
  .best-offer h4 {
    font-size: 13px;
    margin: 0px 20px auto auto;
  }
  .best-offer p {
    font-size: 10px;
    margin: -3px auto auto 17px;
  }
  .best-offer hr {
    height: 2px;
    min-height: 2px;
    margin: 5px 16px auto auto;
  }
  .s-item {
    padding: 0px 15px;
  }
  .s-item-name {
    padding-top: 20px;
  }
  .s-item-name p {
    font-size: 16px;
  }
  .sale {
    font-size: 16px;
  }
  span.sale:after {
    bottom: 10px;
  }
  .sale sup:after {
    left: 2px;
    top: 8px;
  }
  /***** Checkout *****/
  .l-b *,
  .c-b * {
    font-size: 16px;
    line-height: 26px;
  }
  #checkout-list {
    padding-bottom: 40px;
  }
  #checkout-list form h3 {
    font-size: 24px;
    line-height: 26px;
  }
  .payment-method .custom-radio > label span {
    font-size: 16px;
    line-height: 26px;
  }
  #checkout-list form .form-group label {
    font-size: 16px;
    margin-bottom: 5px;
  }
  #checkout-list form .form-group {
    margin-bottom: 10px;
  }
  #checkout-list form .form-group input,
  .chosen-container-single .chosen-search,
  #checkout-list form .form-group .chosen-single {
    height: 40px;
  }
  #checkout-list form .form-group a.bfh-selectbox-toggle {
    height: 40px;
  }
  #checkout-list
    form
    .form-group
    .bfh-selectbox
    .bfh-selectbox-options
    ul
    li
    > a {
    font-size: 15px;
    padding: 3px 10px;
  }
  #checkout-list
    form
    .form-group
    a.bfh-selectbox-toggle
    span.bfh-selectbox-option {
    font-size: 15px;
    padding-top: 2px;
  }
  #checkout-list form .form-group .results-select .btn-primary,
  #checkout-list form .form-group .chosen-single {
    font-size: 16px;
    padding: 8px 20px 8px 20px;
  }
  #checkout-list form .form-group .results-select .dropdown-toggle::after,
  #checkout-list form .form-group .chosen-single:after {
    font-size: 18px;
    top: 22%;
  }
  #checkout-list form .form-group .chosen-single:after {
    right: 20px;
  }
  .chosen-search:after {
    top: 14px;
    right: 20px;
  }
  .chosen-container.chosen-with-drop .chosen-drop {
    -webkit-transform: translate3d(0px, -40px, 0px) !important;
    -moz-transform: translate3d(0px, -40px, 0px) !important;
    transform: translate3d(0px, -40px, 0px) !important;
  }
  .shipping-method .results-select .dropdown-menu.show {
    -webkit-transform: translate3d(0px, 41px, 0px) !important;
    -moz-transform: translate3d(0px, 41px, 0px) !important;
    transform: translate3d(0px, 41px, 0px) !important;
  }
  #checkout-list form .form-group .results-select > p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 10px;
  }
  .payment-method {
    margin-top: 30px;
  }
  .payment-method .custom-radio {
    padding-left: 30px;
  }
  .payment-method .custom-radio label:before,
  .payment-method .custom-radio label:after {
    height: 20px;
    width: 20px;
    top: 3px;
  }
  .payment-method
    .custom-radio
    .custom-control-input:checked
    ~ .custom-control-label::after {
    width: 10px;
    height: 10px;
  }
  .payment-method
    .custom-radio
    .custom-control-input:checked
    ~ .custom-control-label::after {
    top: 8px;
    left: -25px;
  }
  .payment-method
    .custom-radio.other-payment
    .custom-control-input:checked
    ~ .custom-control-label::after {
    top: 5px;
  }
  .payment-method
    .custom-control.custom-radio.paypal
    .custom-control-input:checked
    ~ .custom-control-label::after {
    top: 22px;
  }
  .pay-text p {
    font-size: 14px;
    padding-top: 5px;
  }
  .payment-method .custom-radio label:before,
  .payment-method .custom-radio label:after {
    left: -30px;
  }
  .payment-method .custom-control.custom-radio.paypal label:after,
  .payment-method .custom-control.custom-radio.paypal label:before {
    top: 17px;
  }
  .payment-method .custom-radio > p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .create-password .checkbox label span {
    font-size: 16px;
    line-height: 26px;
  }
  .create-password .checkbox label input[type="checkbox"] + .label-text:before {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    margin: -6px 5px 0 0;
  }
  .create-password {
    margin-top: 30px;
  }
  .create-password .form-group p {
    font-size: 16px;
  }
  .create-password
    .checkbox
    label
    input[type="checkbox"]:checked
    + .label-text:before {
    font-size: 16px;
    line-height: 17px;
  }
  .p-carts img {
    margin: 3px;
    width: 60px;
    object-fit: contain;
    -o-object-fit: contain;
  }
  .p-carts div {
    width: 60px;
  }
  .p-carts div img {
    width: 40px;
  }
  .p-services img {
    width: 60px;
    object-fit: contain;
    -o-object-fit: contain;
  }
  #checkout-list table.table tr th,
  #checkout-list table.table tr td {
    padding: 10px;
    font-size: 13px;
  }
  #checkout-list table.table tr:first-child th {
    font-size: 14px;
  }
  #checkout-list table.table tbody tr:last-child th:first-child {
    font-size: 14px;
    padding-top: 14px;
  }
  #checkout-list table.table tbody tr:last-child th:last-child {
    font-size: 19px;
  }
  #checkout-list form button.btn-primary {
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .l-f form p,
  .l-form > a {
    font-size: 16px;
    line-height: 26px;
  }
  .l-f form .create-password .checkbox label span {
    font-size: 16px;
    line-height: 26px;
  }
  #checkout-list form .form-group input,
  #checkout-list form .form-group textarea {
    font-size: 16px;
  }
  .what-is-paypal a {
    font-size: 15px;
  }
  /***** Single Product *****/
  .magnify > .magnify-lens {
    width: 150px;
    height: 150px;
  }
  .single-tab-content .tab-content {
    margin-top: 30px;
  }
  .first-tab-pane * {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .single-tab-content .post-author {
    margin-top: 40px;
  }
  .single-tab-content .author-description p {
    font-size: 16px;
    line-height: 23px;
  }
  .single-tab-content #blog-post .form {
    margin-top: 40px;
  }
  #single-product-section #blog-post .form h2 {
    margin-bottom: 20px;
  }
  .related-product-title h3 {
    font-size: 24px;
  }
  /***** Blog Mansory *****/
  .grid-item--width1,
  .grid-item--width3,
  .grid-item--width4 {
    height: 470px;
  }
  .grid-item--width2 {
    height: 940px;
  }
  .g_t {
    padding: 0px 30px;
  }
  .g_t h3 {
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 6px;
  }
  .g_t p {
    font-size: 16px;
    line-height: 26px;
  }
  .single-pr-name h3 {
    font-size: 32px;
    line-height: 26px;
  }
  .single-style * {
    font-size: 16px;
  }
  .single-text * {
    font-size: 16px;
    line-height: 26px;
  }
  .comment-form-rating {
    margin-bottom: 25px;
  }
}

@media (max-width: 1100px) {
  /***** Header *****/
  #header .nav-menu.nav-demo-2 .nav > li > a {
    font-size: 12px;
  }
  #header .header-continer.active .nav-menu.nav-demo-2 .nav > li > a {
    padding: 0px 8px;
  }
  #header .nav-menu.nav-demo-2 .nav > li ul.child-item {
    top: 83px;
  }
  /***** Single Events *****/
  .events_date p {
    margin-bottom: 10px;
  }
  .events-info {
    width: 55%;
  }
  .event-tickets a {
    font-size: 16px;
  }
  .event-tickets a:first-child {
    margin-right: 10px;
    padding: 20px 30px 20px;
  }
  .event-tickets a:last-child {
    padding: 20px 20px;
  }
  .events-slider {
    width: 50%;
  }
  /****** Single gallery ****/
  #single-gallery .grid-item {
    height: 250px;
  }
  #single-gallery .grid-item:nth-child(3),
  #single-gallery .grid-item:nth-child(6n + 1) {
    height: 500px;
  }
  /****** Blog Grid ****/
  .grid li {
    padding: 0px 10px 20px 10px;
  }
  .grid li:nth-of-type(2) .blog-grid-image,
  .grid li:nth-of-type(4) .blog-grid-image,
  .grid li:nth-of-type(5) .blog-grid-image,
  .grid li:nth-of-type(6) .blog-grid-image,
  .grid li:nth-of-type(7) .blog-grid-image,
  .grid li:nth-of-type(10) .blog-grid-image {
    height: 250px;
  }
  .grid li:nth-of-type(3) .blog-grid-image,
  .grid li:nth-of-type(8) .blog-grid-image,
  .grid li:nth-of-type(9) .blog-grid-image {
    height: 400px;
  }
  /***** Blog Single Post *****/
  .featured-image {
    height: 330px;
    margin-bottom: 30px;
  }
  .blog-content > div.sitebar {
    padding-left: 30px;
  }
  .recent-post-image img,
  .recent-post-image {
    width: 60px;
    height: 60px;
  }
  .blog-search form {
    height: 40px;
  }
  .blog-search form input {
    width: 75%;
    padding-left: 10px;
  }
  .blog-search form button {
    width: 25%;
  }
  .blog-search form button i {
    font-size: 17px;
  }
  .blog-categories {
    margin-top: 30px;
  }
  p.post-quote:before,
  p.post-quote:after {
    width: 25px;
    height: 25px;
    top: -2px;
  }
  /***** Cart *****/
  .cart-item {
    padding: 15px 0px;
  }
  .product-price * {
    font-size: 18px;
  }
  .delete-product svg {
    width: 15px;
    height: 15px;
  }
  /***** Single Product *****/
  .single-price p {
    font-size: 24px;
  }
  .single-price .sale {
    font-size: 24px;
    margin-left: 20px;
  }
  .single-price span.sale:after {
    bottom: 13px;
  }
  .catd-button {
    margin-top: 7px;
  }
  .catd-button a {
    font-size: 13px;
    padding: 9px 30px 9px 50px;
  }
  .catd-button a img {
    left: 15px;
    top: 8px;
    width: 15px;
  }
  .single-button-count .plusminus {
    height: 36px;
  }
  .single-button-count .plusminus button {
    height: 36px;
  }
  .single-button-count .plusminus input[type="number"] {
    height: 36px;
  }
  .single-star ul li {
    margin-right: 5px;
  }
  .single-star ul i {
    font-size: 16px;
  }
  .single-button-count {
    margin-top: 15px;
  }
  .single-tab-content {
    margin-top: 60px;
  }
  .single-tab-content .nav-tabs .nav-link {
    padding: 0px 0px 7px;
  }
  .single-tab-content .nav-tabs .nav-item:last-child .nav-link {
    margin-left: 30px;
  }
  /***** Blog Mansory *****/
  .grid-item--width1,
  .grid-item--width3,
  .grid-item--width4 {
    height: 400px;
  }
  .grid-item--width2 {
    height: 800px;
  }
  .grid-item-img:after {
    width: 240px;
  }
  .see-more {
    margin-top: 74px;
    margin-bottom: 74px;
  }
  /***** Single Product *****/
  .name-title * {
    font-size: 16px;
  }
  .shop-view-cart .ad-to-card-button a {
    padding: 10px 20px;
  }
  /***** Shop *****/
  .ad-to-card-button a {
    padding: 12px 10px;
    font-size: 12px;
    border-radius: 6px;
  }
}

@media (max-width: 1060px) {
  .logo {
    max-width: 190px;
  }
  #header .nav-menu.nav-demo-2 .nav > li > a {
    padding: 0px 8px;
  }
  #header .header-continer.active .nav-menu.nav-demo-2 .nav > li > a {
    padding: 0px 6px;
  }
}

@media (max-width: 1024px) {
  .social-icons,
  #text-and-video .social-icons {
    margin-top: 20px;
  }
  #image-gallery .grid > div.grid-item:nth-child(2) {
    width: 50%;
    height: 550px;
  }
  #image-gallery .grid > div.grid-item:nth-child(2n + 1) {
    height: 300px;
  }
  #image-gallery .grid > div.grid-item:nth-child(3n + 1) {
    height: 550px;
  }
  #image-gallery .grid > div.grid-item:last-child {
    height: 250px !important;
  }
  #header .nav-menu.nav-demo-2 {
    display: none;
  }
  .home-demo-2 .menu_icon {
    display: block;
  }
  .nav-demo-1 {
    display: block;
  }
  .mobile-logo {
    max-width: 250px;
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 18px;
    margin-bottom: 15px;
    height: 35px;
  }
}

@media (max-width: 991px) {
  /***** Checkout *****/
  #checkout-list .section > form > div {
    margin-top: 30px;
  }
  .login-and-cupon {
    margin-bottom: 0;
  }
  /***** Single Product *****/
  .single-image {
    padding: 0;
  }
  .product-description {
    padding: 0;
    margin-top: 30px;
  }
  .single-tab-content {
    padding: 0;
    margin-top: 20px;
  }
}

@media (max-width: 980px) {
  .plyr .plyr__volume {
    max-width: 70px;
    margin-right: 27px;
  }
  .plyr__controls > button:last-of-type {
    right: 5%;
  }
  .plyr__controls > button:last-of-type:before {
    right: 285%;
  }
  /***** Shop *****/
  .results {
    padding: 0px 15px 60px 15px;
  }
  .s-item {
    margin-bottom: 40px;
  }
  .s-item-name {
    padding-top: 15px;
  }
  .results-select .btn-primary {
    padding: 7px 20px 8px 25px;
  }
  .results-select .dropdown-menu {
    -webkit-transform: translate3d(0px, 60px, 0px) !important;
    -moz-transform: translate3d(0px, 60px, 0px) !important;
    transform: translate3d(0px, 60px, 0px) !important;
  }
  .results-select .dropdown-menu.show {
    -webkit-transform: translate3d(0px, 40px, 0px) !important;
    -moz-transform: translate3d(0px, 40px, 0px) !important;
    transform: translate3d(0px, 40px, 0px) !important;
  }
  .results-select .dropdown-item a {
    font-size: 14px;
  }
  .results-select .dropdown-item {
    padding: 5px 20px;
  }
  .name p {
    font-size: 33px;
  }
  .name span:first-child {
    margin-right: 15px;
  }
  .ad-to-card-button a {
    margin: 0px 0px;
    padding: 12px 9px;
  }
  /***** Cart *****/
  .cart-item > div:nth-child(3),
  .cart-name > div:nth-child(3) {
    padding-left: 0px;
  }
}

@media (max-width: 900px) {
  .blog-categories h2,
  .blog-recent-post h2 {
    margin-bottom: 10px;
  }
  .plyr__controls > button:last-of-type {
    right: 4%;
  }
  .plyr__controls > button:last-of-type {
    right: 4%;
    top: 53%;
  }
  .mp3_3 .plyr__controls > button:last-of-type {
    top: 52%;
  }
  .plyr .plyr__progress {
    margin-left: 50px;
  }
  .plyr .plyr__volume {
    max-width: 50px;
    margin-right: 20px;
  }
  .plyr__time + .plyr__time {
    margin-right: 15px;
  }
  .plyr__controls > button:last-of-type:before {
    right: 225%;
  }
  #discography-post .mp3 .plyr .plyr__volume {
    max-width: 50px;
  }
  #discography-post .sec_2_content {
    padding-right: 30px !important;
  }
  .play-pause {
    margin-right: 5px;
  }
  .playlist .music_line > span {
    font-size: 14px;
    line-height: 28px;
  }
  .name {
    padding-left: 10px;
  }
  .name p {
    font-size: 28px;
  }
  .day_num {
    width: 110px;
  }
  .buy a {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .buy p {
    font-size: 16px;
  }
  .news_content h2 {
    font-size: 24px;
  }
  .news_content .day_num span {
    font-size: 24px;
  }
  .news_content .day_num div p {
    font-size: 12px;
  }
  .news_content .day_num div {
    line-height: 12px;
  }
  .news_content {
    padding-top: 20px;
    padding-bottom: 35px;
  }
  .n_c * {
    font-size: 14px;
    line-height: 22px;
  }
  .news .cta a {
    letter-spacing: 3px;
  }
  .folow ul li a {
    margin-right: 0px;
    width: 34px;
    height: 34px;
  }
  /******* Music Discography   **********/
  .global-title h1 {
    font-size: 50px;
    margin-bottom: 0px;
  }
  .music-banner-text h2 {
    margin-bottom: 10px;
  }
  .music-banner-text p {
    font-size: 18px;
  }
  #discography-post .plyr__controls > button:last-of-type:before {
    right: 230%;
  }
  #discography-post .mp3 .plyr .plyr__progress {
    margin-left: 45px;
  }
  #discography-post .mp3 .plyr__controls > .plyr__time {
    left: 25px;
  }
  #discography-post .mp3 .plyr__time + .plyr__time {
    margin-left: 5px;
    margin-right: 20px;
  }
  #discography-post .mp3 .plyr--audio .plyr__controls {
    padding: 20px 20px 23px 2px;
    margin: 31px 0px 33px 0px;
  }
  #discography-post .mp3 .plyr__controls > button:last-of-type {
    top: 21px;
    right: 3%;
  }
  #discography-post .global-title {
    padding: 32px 0px 80px;
  }
  .discography-line > div:hover .disc-image {
    -webkit-transform: translateX(65%);
    -moz-transform: translateX(65%);
    -ms-transform: translateX(65%);
    -o-transform: translateX(65%);
    transform: translateX(65%);
  }
  /***** Single Events *****/
  .events-slider {
    width: 100%;
  }
  .events-info {
    max-width: 420px;
    float: none;
    width: 100%;
    left: 0;
  }
  .event-tickets {
    margin-top: 20px;
  }
  .events-slider .carousel-item img {
    width: 100%;
  }
  .event-tickets a:last-child {
    padding: 15px 20px;
  }
  .event-tickets a:first-child {
    padding: 15px 30px 15px;
  }
  /****** Videos *****/
  #videos .embed-responsive,
  #videos .video-img-banner {
    height: 140px;
  }
  #videos .youtube .play {
    width: 50px;
    height: 50px;
    margin-left: -26px;
    margin-top: -22px;
  }
  #videos .video-img-banner .play {
    width: 50px;
    height: 50px;
  }
  /**** Single Video ******/
  body.single-video #discography-text {
    margin-top: 50px;
  }
  body.single-video .social-icons {
    margin-top: 50px;
    margin-bottom: 50px;
    padding-top: 50px;
  }
  /***** Gallery *****/
  /****** Blog Grid ****/
  .grid li {
    width: 50%;
  }
  /***** Blog Single Post *****/
  .row.blog-content {
    display: block;
  }
  .blog-content > div.post-content,
  .blog-content > div.sitebar {
    max-width: 100%;
  }
  .blog-content > div.sitebar {
    padding-top: 50px;
    padding-left: 0px;
  }
  /***** Blog Standard *****/
  .standard-post-item {
    margin-bottom: 67px;
  }
  /**** Contact us *****/
  .contact-info {
    width: 100%;
  }
  .contact-info h2 {
    width: 60%;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  .contact-adress {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .contact-adress > a i,
  .contact-adress > p i {
    width: 20px;
    margin-right: 10px;
  }
  /***** Cart *****/
  .order-coupon {
    margin-top: 30px;
  }
  .enter-coupon,
  .order-button {
    max-width: 320px;
  }
  .coupon-form {
    margin-top: 20px;
  }
  .coupon-form form {
    height: 40px;
  }
  .coupon-form form button {
    font-size: 16px;
  }
  .cart-buttons {
    margin-top: 34px;
    margin-bottom: 15px;
  }
  .cart-buttons a {
    font-size: 14px;
    padding: 9.5px 25px;
  }
  .cart-buttons a:last-child {
    padding: 9.5px 35px;
  }
  /***** Search Result *****/
  .t-shirt-image {
    height: 380px;
  }
  .search-result #blog-post {
    margin-bottom: 50px;
  }
  /***** Blog Mansory *****/
  .grid-item--width1,
  .grid-item--width3,
  .grid-item--width4 {
    height: 350px;
  }
  .grid-item--width2 {
    height: 700px;
  }
  .g_t h3 {
    margin-bottom: 10px;
  }
  .grid-item-img:after {
    width: 165px;
    height: 22px;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .news .cta a {
    letter-spacing: 1px;
    padding: 10px 9px;
    border-radius: 5px;
  }
  .n_c {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .news_content h2 {
    margin-bottom: 10px;
  }
  .news .cta {
    margin-top: 40px;
  }
  /***** Blog Single Post *****/
  .categories-line {
    padding: 20px 0px;
  }
  .news_content h2 {
    margin-bottom: 10px;
  }
  .n_c {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  /******** Photogallery *****/
  body.gallery-photogallery .music-banner > div {
    height: 101%;
  }
  body.gallery-photogallery .music-banner-image {
    top: -1px;
  }
  body.contact-us-page #contact-us {
    padding: 50px 0px 50px;
  }
}

@media (max-width: 767px) {
  #header .bg_image {
    background-position: 35%;
  }
  #image-gallery .grid > div.grid-item {
    width: 100% !important;
    height: 500px !important;
  }
  #image-gallery .grid > div.grid-item:last-child {
    height: 500px !important;
  }
  .about-me-content * {
    font-size: 14px;
    line-height: 22px;
  }
  .signature {
    text-align: left;
  }
  .signature img {
    width: 40%;
  }
  #about-me .section_bg_image {
    background-position: center center;
  }
  #page-title {
    margin-top: 90px;
    margin-bottom: 30px;
  }
  #discography {
    margin-bottom: 0px;
  }
  .video-block {
    margin-bottom: 30px;
  }
  #header .search-bar form input {
    height: 50px;
  }
  .search-bar form svg {
    width: 20px;
  }
  .header-title h1 {
    font-size: 25px;
  }
  .title {
    padding-top: 47px;
    padding-bottom: 45px;
  }
  .title h1 {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 3px;
  }
  #album-release {
    padding-bottom: 20px;
  }
  #album-release .title {
    padding-bottom: 20px;
  }
  .title p {
    font-size: 12px;
    line-height: 22px;
  }
  .j_c {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cd_block {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 58px;
  }
  .j_c .plyr--audio .plyr__controls {
    padding: 45px 0px 15px 0px;
  }
  .music,
  .sec_2_content {
    -webkit-flex-basis: initial;
    -ms-flex-preferred-size: initial;
    flex-basis: initial;
    -webkit-box-flex: initial;
    -webkit-flex-grow: initial;
    -moz-box-flex: initial;
    -ms-flex-positive: initial;
    flex-grow: initial;
  }
  .sec_2_content {
    line-height: 22px;
    padding-right: 0px !important;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .sec_2_content * {
    font-size: 14px;
  }
  #discography-post {
    margin-top: 30px;
    padding-top: 30px;
  }
  #discography-post .j_c {
    padding-bottom: 10px;
  }
  #discography-text {
    margin-top: 35px;
  }
  .music {
    margin-bottom: 3px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .mp3 > span {
    left: 12px;
    font-size: 14px;
  }
  .plyr__time {
    font-size: 14px;
  }
  .j_c .plyr__time {
    left: 35px;
  }
  .j_c .plyr__controls > button:last-of-type {
    top: 51%;
    right: 0%;
  }
  .plyr__controls > button:last-of-type {
    right: 3%;
  }
  .plyr__controls > button:last-of-type {
    top: 46%;
  }
  .plyr .plyr__volume {
    margin-right: 25px;
  }
  .plyr__time + .plyr__time {
    margin-left: 30px;
    margin-right: 30px;
  }
  .plyr .plyr__volume {
    max-width: 100px;
  }
  .plyr__controls > button:last-of-type:before {
    right: 365%;
    top: 0px;
  }
  .j_c .mp3_3 .plyr__controls > button:last-of-type {
    top: 50%;
  }
  #discography-post .mp3 .plyr .plyr__volume {
    max-width: 70px;
  }
  #discography-post .mp3 .plyr__controls > .plyr__time {
    font-size: 14px;
  }
  .music_date p,
  .music_after p {
    font-size: 14px;
    line-height: 22px;
  }
  .shop_cta {
    font-size: 12px;
  }
  .cta {
    width: 100%;
    text-align: center;
  }
  .disc {
    left: 0;
  }
  .cd {
    left: 34%;
  }
  .cta a,
  #gallery .cta a {
    font-size: 12px;
    padding: 19px 10px 20px;
  }
  #album-release .section_bg_image {
    background-position: 75%;
  }
  .j_c {
    padding-bottom: 31px;
  }
  .j_c .cta {
    margin-top: 28px;
  }
  #gallery .cta {
    margin-top: 61px;
  }
  #on-tour .section {
    width: 100%;
  }
  #gallery {
    padding-bottom: 63px;
  }
  #on-tour {
    padding-bottom: 50px;
  }
  #gallery .cta a {
    letter-spacing: 7px;
    padding: 20px 13px 20px 20px;
  }
  #video {
    padding-bottom: 51px;
  }
  #testimonials {
    padding-bottom: 34px;
  }
  #contact-us {
    padding-bottom: 50px;
  }
  .row.ticket:after {
    height: 2px;
  }
  .row.ticket > div {
    padding: 40px 0px;
  }
  .row.ticket > div > div {
    display: block;
    margin: 0px;
  }
  a.ticket-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    max-width: 100%;
    padding: 0;
  }
  .day {
    float: left;
  }
  .day_num {
    width: 120px;
  }
  .name {
    float: left;
    max-width: 85%;
    margin-bottom: 30px;
    padding-left: 20px;
  }
  .name p {
    font-size: 30px;
  }
  .name span:first-child {
    margin-right: 5px;
  }
  .name span:last-child {
    margin-left: 5px;
  }
  .buy {
    clear: both;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .buy a {
    display: initial;
    padding-left: 25px;
    padding-right: 25px;
  }
  .banner_1 {
    max-width: 100%;
    padding: 0;
  }
  .banner_2 {
    max-width: 100%;
    padding: 0;
  }
  #news {
    padding-bottom: 15px;
  }
  .news > div.row {
    display: block;
  }
  .news > div > div {
    max-width: 685px;
    width: 100%;
    margin: auto auto 30px;
  }
  .news_content h2 {
    font-size: 24px;
  }
  .news_content {
    padding-top: 100px;
    padding-bottom: 130px;
  }
  .news_content .day_num span {
    font-size: 22px;
  }
  .news_content .day_num div {
    line-height: 10px;
  }
  .news_content .day_num div p {
    font-size: 10px;
  }
  .news_content .day_num div p:first-child {
    margin-top: -1px;
  }
  .news_content .day_num div p:last-child {
    margin-top: 2px;
  }
  .news_content .day_num > p {
    font-size: 12px;
  }
  .n_c * {
    font-size: 14px;
    line-height: 22px;
  }
  .news .cta a {
    letter-spacing: 7px;
  }
  .d-md-block {
    display: block !important;
  }
  .carousel_content {
    width: 80%;
  }
  .carousel_content * {
    font-size: 14px;
    line-height: 22px;
  }
  #footer .bg_image {
    background-position: 50%;
  }
  .footer {
    display: block;
  }
  .footer .day_num div {
    margin-right: 15px;
  }
  .footer > div:first-child {
    padding-right: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  .footer > div:first-child p {
    line-height: 22px;
  }
  .footer .day_num > a > p {
    line-height: 22px;
  }
  .info p {
    line-height: 22px;
  }
  .footer > div {
    max-width: 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  .footer > div:last-child {
    padding-left: 0;
    width: 100%;
    margin-top: 40px;
    text-align: center;
  }
  .footer h2 {
    text-align: center;
  }
  .popup_block {
    width: 90%;
    height: 50%;
  }
  #popup-container ul {
    bottom: 18%;
  }
  .form .btn-primary {
    padding: 10px 15px 11px;
    font-size: 12px;
    margin-top: 14px;
  }
  .form form textarea {
    height: 190px;
  }
  .form textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    padding-top: 150px;
  }
  .form textarea::-moz-placeholder {
    /* Firefox 19+ */
    padding-top: 150px;
  }
  .form textarea:-ms-input-placeholder {
    /* IE 10+ */
    padding-top: 150px;
  }
  .form textarea:-moz-placeholder {
    /* Firefox 18- */
    padding-top: 150px;
  }
  /******* Music Discography   **********/
  .global-title h1 {
    font-size: 40px;
  }
  .music-banner-text h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .music-banner-text p {
    font-size: 16px;
    line-height: 22px;
  }
  #discography-post .sec_2_content {
    padding-right: 0px !important;
  }
  #discography-post .global-title {
    padding: 21px 0px 57px;
  }
  .discography_description * {
    font-size: 14px;
    line-height: 22px;
  }
  .social-icons {
    margin-top: 20px;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .social-icons a {
    font-size: 16px;
    margin-right: 10px;
  }
  .playlist-title {
    margin-bottom: 21px;
  }
  .playlist-title h2 {
    font-size: 24px;
  }
  #discography-post .mp3 .plyr__time + .plyr__time {
    margin-right: 50px;
  }
  #discography-post .mp3 .plyr .plyr__progress {
    margin-left: 55px;
  }
  #discography-post .mp3 .plyr__controls > .plyr__time {
    left: 35px;
  }
  #discography-post .mp3 .plyr__controls > button:last-of-type {
    top: 20px;
    right: 1%;
  }
  .playlist {
    margin-top: 20px;
  }
  #discography-post .plyr__controls > button:last-of-type:before {
    right: 300%;
    top: 0px;
  }
  #discography-post .mp3 .plyr--audio .plyr__controls {
    padding: 20px 20px 23px 5px;
    margin: 31px 0px 33px 0px;
  }
  .play-pause {
    margin-right: 10px;
  }
  #discography > .section {
    padding: 0px 30px;
  }
  .discography-line > div:nth-child(2) .music-banner-image {
    margin: inherit;
  }
  .discography-line > div:nth-child(2) .disc-image {
    left: 0%;
  }
  .discography-line > div:nth-child(2) .music-banner-text {
    margin: inherit;
  }
  .discography-line > div:last-child .music-banner-image {
    margin: inherit;
  }
  .discography-line > div:last-child .music-banner-text {
    margin: inherit;
  }
  .discography-line > div:last-child .disc-image {
    left: 0%;
  }
  /***** Single Events *****/
  .events_date * {
    font-size: 18px;
  }
  .events_date p {
    line-height: 22px;
  }
  .events_date i {
    width: 18px;
    margin-right: 10px;
  }
  #text-and-video .row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #text-and-video .row > div:first-child {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    margin: 30px auto auto;
  }
  #text-and-video .social-icons {
    padding-top: 20px;
  }
  .single-events-text p {
    font-size: 14px;
    line-height: 22px;
  }
  #text-and-video .row > div:last-child {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  #text-and-video {
    margin-top: 30px;
    padding: 30px 0px;
  }
  .background-map .overly-1 {
    background-position: 70%;
  }
  .social-icons > span {
    font-size: 14px;
    margin-right: 10px;
  }
  /****** Videos *****/
  #videos .embed-responsive,
  #videos .video-img-banner {
    height: 200px;
  }
  .video-banner-name h2 {
    font-size: 18px;
    margin-bottom: 0px;
  }
  .video-banner-name p {
    font-size: 14px;
    line-height: 22px;
  }
  #single-gallery .column {
    max-width: 100%;
    -webkit-box-flex: 100%;
    -webkit-flex: 100%;
    -moz-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    padding: 0;
  }
  #single-gallery .column:nth-of-type(2) .gallery-image:nth-of-type(3) {
    width: 100%;
  }
  #single-gallery .gallery-image {
    height: 270px !important;
    padding-top: 1px !important;
  }
  .sm-title {
    margin-bottom: 30px;
  }
  body.gallery-single-gallery #discography-text {
    padding-top: 30px;
  }
  .sm-title h2 {
    font-size: 18px;
    line-height: 22px;
  }
  .sm-section .discography_description p {
    font-size: 14px;
    line-height: 22px;
  }
  .sm-section .social-icons {
    padding-bottom: 30px;
    padding-top: 15px;
    text-align: left;
    margin-top: 15px;
  }
  /******** Photogallery *****/
  body.gallery-photogallery .music-banner-text h2 {
    font-size: 24px;
    line-height: 22px;
  }
  body.gallery-photogallery .music-banner-text p {
    font-size: 14px;
    line-height: 22px;
  }
  body.gallery-photogallery #discography .grid-item {
    height: 300px;
    width: 100% !important;
  }
  body.gallery-photogallery #discography .grid-item:nth-child(2) {
    height: 300px !important;
    width: 100% !important;
  }
  body.gallery-photogallery #discography .grid-item:nth-child(5n + 1) {
    height: 300px !important;
    width: 100% !important;
  }
  body.gallery-photogallery #discography .grid-item:nth-child(3),
  body.gallery-photogallery #discography .grid-item:nth-child(7),
  body.gallery-photogallery #discography .grid-item:last-child {
    height: 300px !important;
    padding: 0px 0px;
  }
  /***** Blog Single Post *****/
  .author-form-group {
    margin-top: 30px;
    padding: 30px 0px;
  }
  .recent-post-name h3 {
    font-size: 12px;
    line-height: 14px;
  }
  .recent-post-name span {
    font-size: 10px;
  }
  .post-category,
  .post-by * {
    font-size: 12px;
  }
  .post-heading h2 {
    font-size: 24px;
    line-height: 22px;
    margin: 10px 0px;
  }
  .post-text p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 20px;
  }
  p.post-quote {
    margin: 30px auto 30px;
  }
  .author-name-date p:nth-of-type(1) {
    font-size: 14px;
    line-height: 22px;
  }
  .author-name-date p:nth-of-type(2) {
    font-size: 12px;
  }
  .author-info em {
    font-size: 12px;
  }
  .author-description p {
    font-size: 14px;
    line-height: 22px;
  }
  .reply {
    font-size: 14px;
  }
  #blog-post .form h2,
  .blog-categories h2,
  .blog-recent-post h2 {
    font-size: 16px;
    line-height: 22px;
  }
  #blog-post .form h2 {
    margin-bottom: 30px;
  }
  .post-share span {
    font-size: 12px;
  }
  .post-share a {
    font-size: 14px;
  }
  .post-cta a {
    letter-spacing: 7px;
    padding: 20px 13px 20px 20px;
  }
  .categories-line {
    font-size: 12px;
    line-height: 22px;
  }
  /***** Blog Grid *****/
  .grid-gallery figcaption h3 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 5px;
  }
  .grid-gallery figcaption .post-publish-date {
    font-size: 12px;
  }
  .grid-gallery figcaption p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 5px;
  }
  /***** Cart *****/
  .cart-name * {
    font-size: 14px;
    line-height: 22px;
  }
  .cart-description p {
    font-size: 14px;
    line-height: 22px;
  }
  .cart-item {
    position: relative;
    display: block;
    padding: 15px 0px 45px;
  }
  .cart-item > div {
    max-width: 100%;
    display: block;
    padding: 0;
  }
  .cart-image {
    width: 100px;
    height: 100px;
    margin: auto;
    float: none;
  }
  .cart-description {
    width: 100%;
    float: none;
    padding: 0;
    text-align: center;
    margin-top: 20px;
  }
  .cart-description a,
  .cart-description h2 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 5px;
  }
  .product-count {
    width: 100px;
    height: 35px;
    margin: 15px auto auto auto;
  }
  .plusminus input[type="number"] {
    font-size: 14px;
  }
  .delet-line {
    width: 15px;
    position: absolute;
    z-index: 9;
    top: 9px;
    bottom: auto;
    right: 0;
  }
  .delete-product {
    position: initial;
    width: 15px;
  }
  .product-total {
    position: static;
  }
  .total-name-line .product-price {
    position: static;
    text-align: right;
    width: 100%;
  }
  .enter-coupon,
  .order-button {
    float: none;
    max-width: 100%;
  }
  .order-coupon {
    position: relative;
    margin-top: 15px;
    padding-top: 45px;
  }
  .glob-price {
    position: absolute;
    top: 0;
    width: 100%;
  }
  .g-p * {
    font-size: 24px;
    line-height: 22px;
  }
  .o-t * {
    font-size: 18px;
    line-height: 22px;
  }
  .g_t h3 {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 4px;
  }
  .g_t p {
    font-size: 14px;
    line-height: 22px;
  }
  .c-t * {
    font-size: 14px;
    line-height: 22px;
  }
  .cart-buttons {
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .cart-buttons a {
    display: block;
    float: none !important;
    text-align: center;
  }
  .cart-buttons a:first-child {
    margin-bottom: 15px;
  }
  .coupon-form {
    margin-top: 15px;
  }
  .coupon-title {
    display: none;
  }
  .coupon-form form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    opacity: 1;
  }
  .coupon-form form input::-moz-placeholder {
    /* Firefox 19+ */
    opacity: 1;
  }
  .coupon-form form input:-ms-input-placeholder {
    /* IE 10+ */
    opacity: 1;
  }
  .coupon-form form input:-moz-placeholder {
    /* Firefox 18- */
    opacity: 1;
  }
  .cart-name > div {
    display: none;
  }
  .cart-name > div:first-child {
    display: block;
  }
  #cart-order {
    padding: 0px 0px 30px;
  }
  .prise-mobile,
  .total-mobile {
    display: inline-block;
    margin-right: 5px;
    color: #959595;
  }
  .price-name-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
  }
  .total-name-line {
    position: absolute;
    width: 50%;
    right: 0;
    bottom: 0;
  }
  .price-name-line .product-price {
    position: static;
    width: 100%;
    text-align: left;
  }
  .product-price * {
    font-size: 14px;
  }
  .l-b *,
  .c-b * {
    font-size: 14px;
    line-height: 22px;
  }
  .l-f form p,
  .l-form > a {
    font-size: 14px;
    line-height: 22px;
  }
  .l-f form .create-password .checkbox label span {
    font-size: 14px;
    line-height: 22px;
  }
  #checkout-list .l-f form button.btn-primary {
    font-size: 14px;
    padding-top: 7px;
  }
  #checkout-list .c-f form button.btn-primary {
    font-size: 14px;
    padding-top: 7px;
  }
  /***** Contact Us *****/
  body.contact-us-page #contact-us {
    padding: 25px 0px 30px;
  }
  .contact-info h2 {
    font-size: 24px;
  }
  .contact-adress {
    margin-top: 28px;
    margin-bottom: 36px;
  }
  .contact-info p {
    font-size: 14px;
    line-height: 22px;
  }
  #checkout-list form .form-group label {
    font-size: 14px;
  }
  .contact-adress > a,
  .contact-adress > p {
    font-size: 14px;
  }
  #checkout-list form .form-group input,
  #checkout-list form .form-group textarea {
    font-size: 14px;
  }
  #checkout-list form h3 {
    font-size: 18px;
    line-height: 22px;
  }
  .create-password .checkbox label span {
    font-size: 14px;
    line-height: 22px;
  }
  #checkout-list form .form-group .results-select > p {
    font-size: 14px;
    line-height: 22px;
  }
  .payment-method .custom-radio > label span {
    font-size: 14px;
    line-height: 22px;
  }
  .what-is-paypal a {
    font-size: 14px;
  }
  #checkout-list form .form-group .results-select .btn-primary,
  #checkout-list form .form-group .chosen-single {
    font-size: 14px;
    padding: 9px 20px 8px 20px;
  }
  #checkout-list form .form-group .chosen-results li {
    font-size: 14px;
  }
  #checkout-list form button.btn-primary {
    font-size: 16px;
    padding-bottom: 8px;
  }
  /***** 404 Page ******/
  .page-404 .big-title img {
    width: 90%;
  }
  .page-404 .big-title h2 {
    width: 90%;
    letter-spacing: 8px;
  }
  .search-404 form {
    height: 50px;
  }
  .search-404 form input {
    padding-left: 15px;
  }
  /***** Search Result *****/
  body.search-result .blog-content {
    padding-top: 30px;
  }
  body.search-result .global-title h2 {
    font-size: 25px;
    margin-top: 5px;
  }
  .t-shirt-image {
    height: 300px;
  }
  .t-shirt-description {
    padding: 35px 5px 60px;
  }
  .t-shirt-description h2 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .t-shirt-description p {
    font-size: 14px;
    line-height: 22px;
  }
  .t-shirt-description .post-cta {
    margin-top: 50px;
  }
  .search-result #blog-post {
    margin-bottom: 20px;
  }
  /***** Shop *****/
  .results-text * {
    font-size: 14px;
    line-height: 22px;
  }
  .s-item-name h2 {
    font-size: 14px;
    line-height: 22px;
  }
  .results {
    padding: 0px 15px 30px 15px;
  }
  #releated-products .s-item {
    margin-bottom: 30px;
  }
  .results-select .btn-primary,
  .results-select .dropdown-menu {
    border-radius: 5px;
    font-size: 14px;
  }
  body.single-product #releated-products {
    padding-top: 30px;
    margin-top: 30px;
  }
  .related-product-title {
    margin-bottom: 30px;
  }
  .s-item {
    margin-bottom: 41px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .s-item-name p {
    font-size: 14px;
  }
  .sale {
    font-size: 14px;
  }
  span.sale:after {
    bottom: 9px;
  }
  .sale sup:after {
    top: 7px;
  }
  /***** Single Gallry *****/
  #single-gallery .grid-item,
  #single-gallery .grid-sizer {
    width: 50%;
  }
  #single-gallery .grid-item:nth-child(9n + 1) {
    width: 100%;
  }
  /***** Blog Mansory *****/
  .grid > div {
    width: 100%;
  }
  .grid > div.grid-item {
    height: 300px;
  }
  .grid > div .grid-item-img {
    width: 65%;
    height: 100%;
  }
  .grid > div .grid-item-content {
    width: 35%;
    height: 100%;
  }
  .grid > div:nth-child(odd) .grid-item-img {
    float: right;
  }
  .grid > div:nth-child(odd) .grid-item-content {
    float: left;
  }
  .grid > div:nth-child(odd) .grid-item-content:after {
    border-top: 15px solid transparent;
    border-left: 15px solid rgb(255, 255, 255);
    border-bottom: 15px solid transparent;
    border-right: none;
    top: 47.5%;
    right: -14px;
    left: auto;
  }
  .grid > div:nth-child(odd):hover .grid-item-content:after {
    border-left-color: #FF009B;
  }
  .grid > div:nth-child(even) .grid-item-img {
    float: left;
  }
  .grid > div:nth-child(even) .grid-item-content {
    float: right;
  }
  .grid > div:nth-child(even) .grid-item-content:after {
    border-top: 15px solid transparent;
    border-right: 15px solid rgb(255, 255, 255);
    border-bottom: 15px solid transparent;
    border-left: none;
    top: 47.5%;
    left: -14px;
  }
  .grid > div:nth-child(even):hover .grid-item-content:after {
    border-right-color: #FF009B;
  }
  .grid-item--width2 .grid-item-img:after {
    top: 0;
    bottom: 0;
  }
  .see-more {
    margin-top: 66px;
    margin-bottom: 68px;
  }
  .see-more a {
    letter-spacing: 7px;
    padding: 20px 13px 20px 20px;
  }
  /**** Single Product *****/
  #single-product-section {
    padding-top: 0;
  }
  .shop-view-cart {
    display: block;
    text-align: center;
    margin-top: 0;
    padding: 0px;
  }
  .shop-view-cart .ad-to-card-button {
    margin-top: 20px;
  }
  .name-title * {
    font-size: 14px;
  }
  .shop-view-cart .ad-to-card-button a {
    font-size: 13px;
  }
  .single-pr-name h3 {
    font-size: 24px;
    line-height: 22px;
  }
  .single-price p {
    font-size: 18px;
    margin: 10px 0px 8px;
  }
  .single-tab-content .author-description p {
    font-size: 14px;
    line-height: 22px;
  }
  .single-price .sale {
    font-size: 16px;
  }
  .single-style * {
    font-size: 14px;
  }
  .single-button-count .plusminus input[type="number"] {
    font-size: 18px;
  }
  .single-text * {
    font-size: 14px;
    line-height: 22px;
  }
  .single-code * {
    font-size: 14px;
  }
  .single-tab-content .nav-tabs .nav-link {
    font-size: 16px;
  }
  .first-tab-pane * {
    font-size: 14px;
    line-height: 22px;
  }
  .related-product-title h3 {
    font-size: 18px;
  }
  .comment-form-rating {
    margin-bottom: 20px;
  }
}

@media (max-width: 736px) {
  .all-events #on-tour {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  body.single-video #discography-text {
    margin-top: 30px;
  }
  body.single-video .social-icons {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  #standard-blog .blog-content {
    padding-bottom: 10px;
  }
  .see-more {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .footer {
    padding-top: 30px;
    padding-bottom: 25px;
  }
}

@media (max-width: 575px) {
  #page-title {
    margin-top: 77px;
  }
  .all-events #on-tour {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 18px;
    margin-bottom: 15px;
    height: 35px;
  }
  .header_items > div {
    height: 20px;
    width: 17px;
  }
  .header_items svg {
    width: 17px;
  }
  .search_icon,
  .shop_icon {
    margin-right: 10px;
  }
  .header_items i {
    font-size: 18px;
  }
  .card_count {
    width: 15px;
    height: 15px;
    font-size: 8px;
    top: -3px;
    right: -2px;
  }
  .plyr__time + .plyr__time {
    margin-left: 15px;
    margin-right: 15px;
  }
  .plyr .plyr__volume {
    max-width: 82px;
  }
  .plyr__controls > button:last-of-type:before {
    right: 315%;
  }
  .form .fild_1 > div:first-child {
    margin-bottom: 20px;
  }
  #header ul.nav > li > a {
    font-size: 18px;
    padding-left: 20px;
  }
  #header .nav > li {
    width: 120px;
  }
  #header .nav > li ul.child-item {
    left: 105px;
    padding: 10px 20px 10px 20px;
  }
  #header .nav > li ul.child-item > li a {
    font-size: 18px;
    line-height: 26px;
  }
  #header .nav > li ul.child-item:after {
    border-top-width: 8px;
    border-right-width: 15px;
    border-bottom-width: 8px;
    left: -15px;
  }
  .carousel_content:before,
  .carousel_content:after {
    width: 30px;
    height: 30px;
  }
  .row.ticket > div {
    padding: 25px 0px;
  }
  .day_num {
    width: 75px;
    line-height: 13px;
    height: 28px;
    border-right-width: 4px;
  }
  .day_num span {
    font-size: 33px;
  }
  .day_num div {
    margin-left: 3px;
    line-height: 16px;
  }
  .day_num div p {
    font-size: 14px;
  }
  .name {
    padding-left: 10px;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .name p {
    font-size: 16px;
    line-height: 29px;
  }
  .buy a {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 12px;
  }
  .buy p {
    font-size: 15px;
  }
  /******* Music Discography   **********/
  #discography-post .global-title {
    padding: 27px 0px 54px;
  }
  #discography-post .j_c {
    padding-bottom: 20px;
  }
  #discography-text {
    margin-top: 0px;
  }
  .global-title h1 {
    font-size: 24px;
  }
  .social-icons {
    padding-top: 15px;
  }
  #discography-post .mp3 .plyr__time + .plyr__time {
    margin-right: 25px;
  }
  #discography-post .mp3 .plyr--audio .plyr__controls {
    margin: 0px;
  }
  /***** Single Events *****/
  .events-info {
    max-width: 260px;
  }
  .event-tickets {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .event-tickets a:first-child {
    margin-right: 0px;
  }
  .event-tickets a:last-child {
    margin-top: 10px;
  }
  .event-tickets a {
    font-size: 14px;
  }
  .events-slider .carousel-item img {
    -o-object-fit: cover;
    object-fit: cover;
  }
  #text-and-video .social-icons {
    margin: 20px auto auto auto;
    width: 90%;
  }
  #map .section,
  #events-banner .section {
    width: 100%;
  }
  .single-events-text {
    width: 90%;
    margin: -7px auto auto auto;
  }
  .background-map {
    top: 16%;
  }
  .background-map .overly-1 {
    background-position: 60%;
  }
  /***** Single Gallry *****/
  #single-gallery .grid-item {
    height: 150px;
  }
  #single-gallery .grid-item:nth-child(6n + 1),
  #single-gallery .grid-item:nth-child(5n + 1) {
    height: 150px;
  }
  #single-gallery .grid-item:nth-child(3),
  #single-gallery .grid-item:nth-child(6n + 1) {
    height: 300px;
  }
  /****** Blog Grid ****/
  .grid li {
    width: 100%;
  }
  .grid li:nth-of-type(3) .blog-grid-image,
  .grid li:nth-of-type(8) .blog-grid-image,
  .grid li:nth-of-type(9) .blog-grid-image {
    height: 250px;
  }
  /***** Blog Single Post *****/
  .featured-image {
    height: 200px;
    margin-bottom: 30px;
  }
  .post-text p {
    padding: 0;
  }
  p.post-quote {
    text-align: center;
    padding: 0px 30px;
  }
  .reply {
    margin-top: 10px;
    margin-bottom: 30px;
  }
  /**** Contact us *****/
  .contact-info h2 {
    width: 100%;
  }
  .contact-adress > a i,
  .contact-adress > p i {
    width: 17px;
  }
  /***** 404 Page ******/
  .page-404 .big-title h2 {
    top: 0;
    bottom: 0;
    font-size: 18px;
    letter-spacing: 2px;
  }
  .search-404 {
    bottom: 45%;
  }
  .search-404 form {
    height: 45px;
  }
  .search-404 form input {
    width: 70%;
    font-size: 14px;
  }
  .search-404 form button {
    width: 30%;
    font-size: 13px;
  }
  .content-404 {
    /*bottom: 25%;*/
  }
  .content-404 a {
    font-size: 21px;
  }
  /***** Search Result *****/
  .t-shirt-image {
    height: 230px;
  }
  .t-shirt-description {
    padding: 35px 15px 60px;
  }
  /***** Shop *****/
  .s-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  /***** Checkout *****/
  .l-form,
  #checkout-list form .form-group .bfh-selectbox .bfh-selectbox-options,
  #checkout-list form .form-group input,
  #checkout-list form .form-group textarea,
  #checkout-list form .form-group a.bfh-selectbox-toggle,
  #checkout-list form .form-group .results-select .btn-primary,
  #checkout-list form .form-group .results-select .dropdown-menu,
  .payment-method .custom-radio.ubs label,
  .payment-cart-other-payment {
    border-radius: 3px;
  }
  #checkout-list form .form-group .chosen-single {
    border-radius: 3px;
  }
  #checkout-list table.table tr:first-child th:first-child {
    border-top-left-radius: 3px;
  }
  #checkout-list table.table tr:first-child th:last-child {
    border-top-right-radius: 3px;
  }
  #checkout-list table.table tbody tr:last-child th:first-child {
    border-bottom-left-radius: 3px;
  }
  #checkout-list table.table tbody tr:last-child th:last-child {
    border-bottom-right-radius: 3px;
  }
  #checkout-list form .form-group .chosen-results {
    height: 240px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  #checkout-list {
    padding-top: 0px;
  }
  .login-and-cupon {
    margin-bottom: 0px;
  }
  .login-and-cupon a.btn-primary {
    display: block;
    text-align: left;
  }
  .login-and-cupon .form-group {
    padding-right: 0;
  }
  #checkout-list .l-f form button.btn-primary,
  #checkout-list .c-f form button.btn-primary {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
  .l-form {
    padding: 20px 0px 20px 0px;
  }
  .l-f form .create-password .checkbox label {
    margin-left: 0;
  }
  /***** Blog Mansory *****/
  .grid > div .grid-item-img {
    width: 50%;
  }
  .grid > div .grid-item-content {
    width: 50%;
  }
  .footer .day_num div {
    margin-left: 5px;
  }
}

@media (max-width: 480px) {
  #image-gallery .grid > div.grid-item {
    width: 100% !important;
    height: 300px !important;
  }
  #image-gallery .grid > div.grid-item:last-child {
    height: 300px !important;
  }
  .plyr__controls button {
    padding: 5px;
  }
  .plyr__controls button svg {
    height: 13px;
  }
  .plyr__time {
    font-size: 11px;
  }
  .plyr__controls > .plyr__time {
    margin-top: 0px;
  }
  .plyr__controls > .plyr__time {
    left: 39px;
  }
  .plyr__time + .plyr__time {
    margin-left: 15px;
    margin-right: 15px;
  }
  .plyr .plyr__volume {
    max-width: 40px;
    margin-right: 18px;
  }
  .plyr__volume input[type="range"]::-webkit-slider-thumb {
    height: 13px;
    width: 13px;
  }
  .plyr .plyr__volume input[type="range"] {
    top: 4px;
  }
  .plyr__controls > button:last-of-type {
    right: 5%;
    top: 50%;
  }
  .j_c .plyr__controls > button:last-of-type {
    top: 55%;
    right: -1%;
  }
  .plyr__controls > button:last-of-type:before {
    right: 205%;
    top: -1px;
    font-size: 16px;
  }
  .j_c .mp3_3 .plyr__controls > button:last-of-type {
    top: 54%;
  }
  .j_c .mp3_3 .plyr__controls > button:last-of-type:before {
    top: -1px;
  }
  .carousel_content {
    padding: 0px 20px;
  }
  .news_content h2 {
    font-size: 22px;
  }
  .news_content {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  #discography-post .music {
    padding: 0px;
    background-color: rgba(255, 255, 255, 0);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  #discography-post .mp3 .plyr__time + .plyr__time {
    margin-right: 20px;
    margin-top: 0px;
  }
  #discography-post .plyr__controls > button:last-of-type {
    right: 1%;
  }
  #discography-post .mp3 .plyr .plyr__progress {
    margin-left: 50px;
  }
  #discography-post .plyr__controls > button:last-of-type:before {
    right: 270%;
    top: -2px;
  }
  #discography-post .mp3 .plyr__controls > button:last-of-type {
    top: 21px;
    right: 2%;
  }
  #discography-post .mp3 .plyr .plyr__volume {
    max-width: 50px;
    margin-top: 2px;
    margin-right: 20px;
  }
  #discography-post .plyr .plyr__volume input[type="range"] {
    top: 4px;
  }
  .discography-line > div:hover .disc-image {
    -webkit-transform: translateX(60%);
    -moz-transform: translateX(60%);
    -ms-transform: translateX(60%);
    -o-transform: translateX(60%);
    transform: translateX(60%);
  }
  /***** Single Events *****/
  .event-tickets {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .event-tickets {
    margin-top: 20px;
  }
  .event-tickets a {
    margin-top: 10px;
  }
  /***** Shop *****/
  .results {
    text-align: center;
  }
  .results-text {
    float: none;
    margin-top: 0;
  }
  .results-select {
    float: none;
    margin-top: 15px;
  }
  .results .btn-group {
    width: 100%;
  }
  .results-select .btn-primary {
    width: 100%;
    text-align: left;
  }
  .results-select .dropdown-toggle::after {
    position: absolute;
    right: 20px;
    top: 17px;
  }
  #blog-grid-gallery {
    padding-bottom: 30px;
  }
  /***** Blog Mansory *****/
  .grid > div.grid-item {
    height: 600px;
  }
  .grid > div.grid-item > a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .grid > div .grid-item-img {
    width: 100%;
    height: 50%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    float: none;
  }
  .grid > div .grid-item-content {
    width: 100%;
    height: 50%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    float: none;
  }
  .grid > div .grid-item-content:after {
    top: -28px !important;
    left: 47.5% !important;
    border-left: 15px solid transparent !important;
    border-right: 15px solid transparent !important;
    border-bottom: 15px solid rgb(255, 255, 255) !important;
  }
  .grid-item:hover .grid-item-content:after {
    border-bottom-color: #FF009B !important;
  }
  .post-cta {
    margin-top: 50px;
  }
  #video .embed-responsive {
    border-width: 10px;
    border-radius: 30px;
  }
}

@media (max-width: 420px) {
  #discography-post .global-title {
    padding: 17px 0px 37px;
  }
  #page-title {
    margin-top: 75px;
  }
}

@media (max-width: 400px) {
  .playlist .music_line > span {
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .discography-line > div:hover .disc-image {
    -webkit-transform: translateX(65%);
    -moz-transform: translateX(65%);
    -ms-transform: translateX(65%);
    -o-transform: translateX(65%);
    transform: translateX(65%);
  }
  /***** Checkout *****/
  .other-payment label {
    max-width: 175px;
  }
  .other-payment label img:first-child {
    margin: 0px 35px 5px;
  }
  /***** Single Product *****/
  #single-product-section {
    padding-top: 0px;
  }
  .single-pr-name h3 {
    font-size: 21px;
  }
  .single-price .sale {
    font-size: 18px;
    margin-left: 10px;
  }
  .single-price span.sale:after {
    bottom: 10px;
  }
  .single-style * {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .catd-button {
    float: none;
  }
  .single-button-count .plusminus {
    float: none;
    margin-top: 30px;
  }
  .single-text {
    margin-top: 10px;
  }
  .single-tab-content .nav-tabs .nav-link {
    font-size: 14px;
    padding: 0px 0px 5px;
    border-bottom: 3px solid transparent;
  }
  .single-tab-content .nav-tabs .nav-item {
    width: 50%;
    margin-bottom: -2px;
  }
  .single-tab-content .nav-tabs .nav-item:last-child .nav-link {
    margin-left: 0px;
    padding-left: 0;
    padding-right: 0;
  }
  .first-tab-pane * {
    font-size: 14px;
    line-height: 21px;
  }
  .single-tab-content .author-description p {
    font-size: 14px;
    line-height: 21px;
  }
  body.single-product #releated-products {
    padding-top: 30px;
    margin-top: 60px;
  }
  .related-product-title {
    padding: 0;
    margin-bottom: 30px;
  }
  #releated-products .s-item {
    padding: 0;
  }
  .single-tab-content #blog-post {
    padding: 0;
  }
  /***** 404 Page ******/
  .page-404 .big-title h2 {
    font-size: 14px;
  }
  .search-404 {
    bottom: 45%;
  }
  /***** Single Gallry *****/
  #single-gallery .grid-item,
  #single-gallery .grid-sizer {
    width: 100%;
  }
  #single-gallery .grid-item {
    height: 250px;
  }
  #single-gallery .grid-item:nth-child(3),
  #single-gallery .grid-item:nth-child(6n + 1) {
    height: 250px;
  }
}

@media (max-width: 380px) {
  .header-title h1 {
    font-size: 18px;
  }
  body.search-result .global-title h2 {
    font-size: 18px;
  }
  #page-title {
    margin-top: 70px;
  }
}

@media (min-width: 768px) and (max-height: 830px) {
  /***** 404 Page *****/
  .search-404 {
    bottom: 30%;
  }
  .content-404 {
    bottom: 8%;
  }
}

@media (max-width: 767px) and (max-height: 720px) {
  /***** 404 Page *****/
  .search-404 {
    bottom: 42%;
  }
  .content-404 {
    bottom: 13%;
  }
}

@media (max-height: 565px) {
  #header .nav {
    height: 230px;
    display: block;
    top: 50px;
    overflow-y: scroll;
  }
  .popup_block {
    height: 60%;
    top: 19%;
  }
  #popup-container ul {
    bottom: 4%;
  }
  .n_c * {
    text-align: center;
  }
}

@media (max-height: 630px) {
  /***** 404 Page *****/
  .search-404 {
    bottom: 42%;
  }
  .content-404 {
    bottom: 13%;
  }
  .page-404 .big-title {
    height: 80px;
    bottom: 65%;
  }
  .page-404 .big-title img {
    max-width: 200px;
  }
  .page-404 .big-title h2 {
    font-size: 13px;
    max-width: 350px;
    top: 0;
    bottom: 0;
    letter-spacing: 8px;
  }
  .search-404 {
    bottom: 48%;
  }
  .search-404 form {
    height: 35px;
  }
  .search-404 form input,
  .search-404 form button {
    font-size: 14px;
  }
  .content-404 h2 {
    font-size: 26px;
    margin-bottom: 0;
  }
  .content-404 p {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .content-404 a {
    font-size: 18px;
  }
}

@media (min-width: 1025px) and (max-width: 1366px) {
  #page-title {
    margin-top: 110px;
  }
  #discography {
    margin-bottom: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #page-title {
    margin-top: 100px;
    margin-bottom: 50px;
  }
  #discography {
    margin-bottom: 0px;
  }
  .video-block {
    margin-bottom: 50px;
  }
  #gallery .music-banner {
    margin-top: -1px;
  }
  body.gallery-photogallery #discography .grid-item {
    margin-top: -2px;
  }
  body.gallery-photogallery #discography .grid-item:nth-child(5n + 1) {
    margin-top: -2px;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  #gallery .music-banner {
    margin-top: -1px;
  }
  body.gallery-photogallery #discography .grid-item {
    margin-top: -2px;
  }
  body.gallery-photogallery #discography .grid-item:nth-child(5n + 1) {
    margin-top: -4px;
  }
}

/*--------------------*/

/* FOR MOZILA FIREFOX */

/*--------------------*/

body.home.firefox .big-title {
  display: table;
  top: 45%;
}

body.home.firefox .big-title .header-title {
  display: table;
  top: 33%;
}

body.page-404.firefox .big-title {
  display: table;
  top: 20%;
}

body.page-404.firefox .big-title h2 {
  display: table;
  top: 63%;
}

body.firefox .events-info {
  display: table;
  top: 130px;
}

@media (max-width: 1180px) {
  body.firefox .events-info {
    top: 120px;
  }
}

@media (max-width: 1100px) {
  body.firefox .events-info {
    top: 100px;
  }
}

@media (max-width: 900px) {
  body.firefox .events-info {
    top: 120px;
  }
}

@media (max-width: 570px) {
  body.firefox .events-info {
    top: 90px;
  }
  .popup_block {
    height: 35%;
  }
  #popup-container ul {
    bottom: 29%;
  }
}

@media (max-height: 630px) {
  body.page-404.firefox .content-404 {
    bottom: auto;
    top: 44%;
  }
}

@media (min-width: 768px) and (max-height: 830px) {
  body.page-404.firefox .big-title {
    top: 12%;
  }
}

/*--------------------*/

/* FOR INTERNET EXPLORER */

/*--------------------*/

body.net .compat-object-fit img {
  display: none !important;
}

body.net .header-title h1 {
  font-weight: 600;
}

body.net .global-title h1 {
  font-weight: 600;
}

body.net .title p {
  font-weight: 400;
}

body.net .name p {
  font-weight: 200;
}

body.net .footer h2 {
  font-weight: 600;
}

body.net .video-banner-name p {
  font-weight: 200;
}

body.net .post-heading h2 {
  font-weight: 600;
}

body.net .recent-post-name {
  display: table;
}

body.net .single-price p {
  font-weight: 200;
}

body.net #blog-post .form h2 {
  font-weight: 200;
}

body.net .coupon-form form {
  border: 1px solid #FF009B;
  border-radius: 5px;
}

body.net .coupon-form form input:focus {
  border: none;
}

body.search-result.net .global-title h2 {
  font-weight: 600;
}

body.net .t-shirt-description h2 {
  font-weight: 600;
}

body.net #header .search-bar form button {
  margin-top: -15px !important;
}

body.net a.popup-image img {
  width: auto;
}

body.net #header .nav-menu.nav-demo-2 {
  padding: 47px 0px;
}

body.home-demo-2.net .header-continer.active {
  padding-bottom: 0px;
}

body.net #header .nav-menu.nav-demo-2 .nav > li:hover ul.child-item {
  width: auto;
}

body.home-demo-2.net
  #header
  .header-continer.active
  .nav-menu.nav-demo-2
  .nav
  > li
  ul.child-item {
  top: 90px;
}

body.net .section_1_title {
  display: table;
  width: 100%;
}

body.net .big-title {
  display: table-cell;
  height: 235px;
}

body.net .header-title {
  height: 65px;
}

body.net .news .col {
  flex-basis: inherit;
}

body.net #footer .col {
  flex-basis: inherit;
}

.compat-object-fit {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.compat-object-fit img {
  display: none;
}

body.net .events-info {
  top: 130px;
}

body.gallery-photogallery.net .music-banner > div {
  display: table;
}

.net .content-404 {
  max-width: 100%;
}

.page-404.net .big-title h2 {
  top: 76%;
  bottom: auto;
  left: 31.8%;
  right: auto;
}

body.net .plyr__controls > .plyr__time {
  margin-top: -9px;
}

body.net .plyr__time + .plyr__time {
  position: absolute;
  right: 20%;
  width: 50px;
  left: auto;
}

body.net .plyr .plyr__volume {
  right: -16%;
}

body.net #discography-post .mp3 .plyr__controls > .plyr__time {
  margin-top: -9px !important;
}

body.net #discography-post .mp3 .plyr__time + .plyr__time {
  position: absolute;
  right: 20%;
  width: 50px;
  left: auto !important;
}

body.net #discography-post .mp3 .plyr .plyr__volume {
  right: -15%;
}

body.net #header .nav-menu.nav-demo-2 .nav {
  top: 0;
}

body.net .plyr .plyr__volume input[type="range"] {
  top: -1px;
}

body.net .plyr__progress input[type="range"] {
  margin-top: 0px;
}

body.net #discography-post .plyr .plyr__volume input[type="range"] {
  top: -1px;
}

body.net .coupon-form form input {
  border-width: 1px;
}

@media (max-width: 1380px) {
  body.net .events-info {
    top: 110px;
  }
}

@media (max-width: 1180px) {
  body.net .events-info {
    top: 120px;
  }
}

@media (max-width: 1100px) {
  body.net .events-info {
    top: 100px;
  }
}

@media (max-width: 900px) {
  body.net .events-info {
    top: 120px;
  }
}

@media (max-width: 570px) {
  body.net .events-info {
    top: 90px;
  }
}

.events_card {
  width: 100%;
}

.events_card .event_thumbnail {
  width: 100% !important;
  max-height: 15em;
  object-fit: cover;
}

.events_card .event_date {
  width: 100%;
  color: white;
  text-align: center;
}
.events_card .event_title {
  width: 100%;
  height: 2em;
  line-height: 1em;
  text-overflow: ellipsis;
  color: white;
  overflow: hidden;
  text-align: center;
  margin-top: 0.5em;
}

.events_card .event_short_des {
  width: 100%;
  height: 5em;
  line-height: 1em;
  text-overflow: ellipsis;
  color: white;
  overflow: hidden;
  text-align: center;
  margin-top: 0.5em;
  font-weight: 200;
  font-size: small;
}

.humberger_sign {
  width: 35px;
  display: inline-block;
  height: 26px;
  overflow: hidden;
  margin-left: 35px;
  cursor: pointer;
}

.humberger_sign span.bar1 {
    margin-left: auto;
    width: 30px;
    transition: all 0.5s ease 0s;
}



.humberger_sign span {
    height: 4px;
    background-color: #FF009B;
    display: block;
    margin-bottom: 7px;
    transition: all 0.3s ease 0s;
}


.contact-bar{
   
    width: 30em;
    background-color: black;
    position: fixed;
    top: 0%;
    right: 0%;
    color: white;
    height: 100vh;
    z-index: 500;

    padding: 2.5em;
}
.hide-contact{
    display: none;
}
.show-contact{
    display: block;
}


.c-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#c-close{
    width: 2.5em;
    height: 2.5em;
    border: none;
    background-color: white;
    color: red;
    border-radius: 50%;
}

.slider-margin{
    margin-top: 95px;
}

@media (max-width: 900px) {
    .slider-margin{
        margin-top: 70px;
    }
    
}