@font-face {
    font-family: "Free Sans";
    font-style: normal;
    font-weight: 400;
    src: url("../font/FreeSans.woff") format("woff");
}

@font-face {
    font-family: "Free Sans";
    font-style: normal;
    font-weight: 700;
    src: url("../font/FreeSansBold.woff") format("woff");
}
:root {
    --gold: #ffbf42;
    /*pink1: #f0b7bb ;*/
    --pink:  #FFC6CA ;
    /*border:  #71C272 ;*/
    /*border:  #67BA6B ;*/
    --green:  #6ABD6E ;
    --white: white;

    --body-color: var(--pink);
    --button-outline: var(--pink);
    --button-color: var(--pink);
    --image-border: var(--pink);
    --visited-link: var(--pink);
    --link-hover: var(--white);
    --link: var(--pink);
    --footer-color: var(--pink);

    --header-background: var(--pink);
    --border: var(--pink);
    --tour-dates-text: var(--pink);
    --tour-buttons-color: var(--pink);
    --tour-green: var(--green);



}


body {
    margin: 0 auto;
    font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
    font-size: 12px;
    /*color: #ffbf42;*/
    color: var(--body-color);


    text-align: center;
    background-color: #000000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

a:link,
a:visited {
    color: var(--visited-link);
    text-decoration: none;
}

a:hover {
    color: #ffffff;
}

.clearboth {
    clear: both;
}

.hidetext {
    font-size: 5%;
    text-indent: -9999em;
    text-align: left;
    color: transparent;
    white-space: nowrap;
    outline: none;
  }
  
.sr {
      border: 0;
      height: 1px;
      left: -99999px;
      margin: 0;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
  }

img {
    max-width: 100%;
    height: auto !important;
}

.outer_wrapper {
    position: relative; 
    /* min-height: 100%; */
    overflow: visible; 
    margin: 0 auto;
    padding-top: 47px;

}

.outer_wrapper::after {
    position: absolute;
    height: 100%;
    width: 100vw;
    z-index: -1;
    content: '';
    background: url('../images/bg.png') top center repeat;
    background-color: #000000;
    background-size: 100%;
    overflow: hidden;
  
    top: 0;
    right: 0;
    bottom: 0;
    left: -10px;

    position: fixed;

    animation: bg_move 1s linear infinite;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
  
    animation-iteration-count: 1;
    animation-fill-mode: both;
}  


@keyframes bg_move {
    to {
      transform: translateY(45px);
    }
  }

/************ END NAVIGATION ****************/

.header_wrap {
    position: relative;
    margin: 0 auto;
    text-align: left;
    background: var(--header-background);
    background: var(--header-background);

    z-index: 99999;
    width: 100%;
    position: fixed; /* remove if header should not always be present */
}

.header_wrap a {color: #000000; letter-spacing: 1px;font-size: 20px;}
.header_wrap a:hover {var(--link-hover);}

.header_wrap .header {
    margin: 0 auto;
}

.nav-mobile {display: none;}

.nav-desktop ul.menu, .nav-desktop ul.external-link {
    list-style: none;
    padding-left: 0px;
    margin-top: 18px;
}

.nav-desktop ul.menu li, .nav-desktop ul.external-link li {
    display: inline;
    margin: 0 15px 0 0;
    line-height: 100%;
}

.nav-desktop ul.external-link {
    flex: 1;
    padding-left: 0;
    list-style: none;
}

.nav-desktop .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 96%;
    margin: 0 auto;
}

.social-wrap img {
    max-height: 24px;
    margin: 0 2px;
}

.social-wrap {
    position: relative;
    margin: 0;
    margin-top: 7px;
}

.social-wrap img:hover {opacity: 0.6;}


/************ END NAVIGATION ****************/

/************ START BORDERS ****************/

.sidebars {
    /* overflow: hidden; */
    z-index: 9999;
}

.logo_header {
    width: 100%;
    position: relative;
    margin: 0 auto;
    z-index: 99998;
  } 

  .logo_header img {
    width: 100%;
}

  .bottom_border {
      width: 100%;
      z-index: 0;
      position: relative;
  }

  .bottom_border img {
    display: block;
    width: 100%;
    z-index: 0;
}
  
  .left_border {
      width: 15%;
      height: 100%;
      background: url('../images/sidebar-left.png') top left repeat-y;
      z-index: 9999;
  
      position: absolute;
      top: 0;
      left: 0;
      background-size: 100% auto;

      overflow: hidden;
  }
 
.right_border {
      width: 15%;
      height: 100%;
      background: url('../images/sidebar-right.png') top right repeat-y;
      z-index: 9999;
  
      position: absolute;
      top: 0;
      right: 0;
      background-size: 100% auto;

      overflow: hidden;
  }

  .left_border .floater-left {
    margin-top: 90vh;
    max-width: 60%;
    margin-left: 10px;
    transform: translateX(5px) translateY(500px);
    animation: left-floater-move 185s infinite; 
}

.right_border .floater-right {
    margin-top: 190vh;
    max-width: 70%;
    margin-left: 20%;
    transform: translateX(10px) translateY(600px);
    animation: right-floater-move 245s infinite;
}

.left_border .floater-left-b {
    margin-top: 140vh;
    max-width: 50%;
    margin-left: 15px;
    transform: translateX(5px) translateY(500px);
    animation: left-floater-move 265s infinite;
}

.right_border .floater-right-b {
    margin-top: 150vh;
    max-width: 50%;
    margin-left: 30%;
    transform: translateX(10px) translateY(600px);
    animation: right-floater-move 195s infinite;
}
  

@keyframes left-sidebar-move {

    0% { 
        transform: translateY(-20px);
      }
      
      50% {
        transform: translateY(20px);
      }
      
      100% {
        transform: translateY(-20px);
    }
  }

  @keyframes right-sidebar-move {

    0% { 
        transform: translateY(-25px);
      }
      
      50% {
        transform: translateY(25px);
      }
      
      100% {
        transform: translateY(-25px);
    }
  }

  @keyframes left-floater-move {

    0% { 
        transform: translateX(0px) translateY(0px);
      }

      50% {
        transform: translateX(5%) translateY(300px);
      }  

      100% {
        transform: translateX(0px) translateY(0px);
      }

  }

  @keyframes right-floater-move {

    0% { 
        transform: translateX(0px) translateY(0px);
      }
      
      50% {
        transform: translateX(-5%) translateY(600px);
      }
      100% { 
        transform: translateX(0px) translateY(0px);
      }
  }

/************ END BORDERS ****************/

/************ START CONTENT ****************/

.content_wrap {
    position: relative;
    margin: 0px auto 0;
    z-index: 0;
}

.content_area {
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 60px;
}

#album.content_area {
    padding-top: 60px;
    margin-top: -70px;
}

.content_area.content-even {
    /*background: rgba(255,212,129,0.1);*/
}

.content_area .content_inner {
    max-width: 60%;
    margin: 0 auto;
    width: 700px;
}

.content_area .header {
    position: relative;
    margin: 5px auto 0px;
    text-transform: uppercase;
    font-size: 90px;
    font-weight: 400;
    font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    line-height: 100%;
}

.content_area .one-header {
    position: relative;
    margin: 5px auto -25px;
    text-transform: uppercase;
    /*font-size: 110px;*/
    font-size: 185px;
    font-weight: 400;
    font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    line-height: 100%;
    white-space: nowrap;
    max-width: fit-content;
    align-content: baseline;
}
.content_area .two-header {
    position: relative;
    margin: 0px auto 0px;
    text-transform: uppercase;
    font-size: 60px;
    font-weight: 400;
    font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    line-height: 100%;
    white-space: nowrap;
}
.content_area .three-header {
    position: relative;
    margin: 15px auto 0px;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 400;
    font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    line-height: 100%;
    white-space: nowrap;
}
.content_area .four-header {
    font-family: 'Free Sans', arial, helvetica, sans-serif;
    font-size: 15px;
    padding-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0px;
    white-space: nowrap;
    margin: 5px auto 0px;
}
.content_area .sub-header {
    font-family: 'Free Sans', arial, helvetica, sans-serif;
    font-size: 19px;
    padding-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0px;
}

.content_area .cover {
    position: relative;
    margin: 0 auto;
}

.content_area .cover img {
    border-radius: 10px;
    /*border: 10px #ffbf42 solid;*/
    /*border: 10px #f0b7bb solid;*/
    /*border: 10px #FFC6CA solid;*/
    /*border: 10px #71C272 solid;*/
    /*border: 10px #67BA6B solid;*/
    border: 10px var(--image-border) solid;





    max-width: 96%;
}


.button-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-wrap .button {
    margin: 26px 10px 0;
}

.button {
    position: relative;
    margin: 26px auto 12px;
} 

.content_area .button a {
    background: var(--button-color);

    padding: 7px 12px 4px;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.5s ease;
    border: 1px var(--button-color) solid;

    border-radius: 4px;
    font-family: 'Free Sans', arial, helvetica, sans-serif;
}

.content_area .button a:hover {
    background: transparent;
    color: var(--button-color);

    transition: all 0.5s ease;
    border-color: var(--button-color);

}


/* Bands in Town */

.bit-feed {
    position: relative;
    margin: 30px auto 0;
}

.bit-widget .bit-top-track-button {
    display: none !important;
}

.bit-widget .bit-nav-bar-container .bit-nav-bar {
    display: none !important;
}

.bit-widget {
    font-family: 'Free Sans', arial, helvetica, sans-serif !important;
}

.bit-widget .bit-venue, .bit-widget .bit-event .bit-location, .bit-widget .bit-event .bit-date {
    text-align: left;
}

.bit-widget .bit-offers, .bit-widget .bit-rsvp {
    transition: all 0.5s ease;
}

.bit-widget .bit-offers:hover {
    background: transparent;
    color: var(--tour-buttons-color);
    border-color: var(--tour-buttons-color);
}

.bit-widget .bit-rsvp:hover {
    background: var(--link) !important;
    color: #000000;
}

.bit-widget .bit-event .bit-date, .bit-widget .bit-event .bit-location .bit-venue{
    color: var(--tour-dates-text);
}

/*.bit-widget-initializer {*/
/*    data-text-color: #FFFFFF;*/
/*    data-background-color: rgba(0,0,0,0);*/
/*    !* Assuming the link-color is applied to the text color of the link *!*/
/*    !* And link-text-color applies when the link is visited *!*/
/*    !* These might need to be changed based on actual usage *!*/
/*    text-decoration-color: var(--tour-dates-text);*/
/*    text-visited-color: #000000;*/
/*    !* The separator color usage is not clear from the initial code, it might need a different selector or pseudo-class *!*/
/*    border-color: rgba(124,124,124,0.25);*/
/*}*/


.highlight-color {}


.content_area#shop .content_inner, .content_area#eyelight .content_inner {
    max-width: 70%;
    width: 1000px;
}

.merch_wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.merch_wrap .merch-image {
    margin: 0 10px;
    transition: all 0.5s ease;
}

.merch_wrap .merch-image:hover {
    opacity: 0.8;
}

.video-wrap {
    position: relative;
    margin: 0 auto;
    padding: 0px 0 0;
    width: 800px;
    max-width: 80%;
}

.video-embed {
    position: relative;
    margin: 0 auto;
    width: 800px;
    max-width: 90%;
    padding: 0 0 50px;
}

.video-wrap .header {
    margin-bottom: 30px;
    /* color: #000; */
    line-height: 100%;
    font-size: 24px;
}

.video-embed .embed-container {
    border: 1px #666 solid;
}


/* iframe responsive */
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* form details */

#form-outer {
    position: relative;
    margin: 0px auto 0px;
    padding: 15px 0 0;
}

#Form-Wrapper {
    position: relative;
    margin: 0px auto 0px;
}

.form-field {
    display: inline; 
    vertical-align: top;
    margin: 0 5px;
}

.form-field input {
    padding: 18px 15px;
    margin-bottom: 15px;
    width: 300px;
    max-width: 80%;
    background-color: #ffffff;
    border: 1px solid #333333;
    font-size: 14px;
    font-family: 'Free Sans', arial, helvetica, sans-serif;
       	text-transform: uppercase;
    	text-align: left;
        color: #000000;
        -webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}

.form-field input:focus {border-bottom: 1px #000000 solid !important;}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}


.form-field select:invalid {
    color: #c4c3c2 !important;
}

.form-field.submit-button button {
    background: var(--button-color);
    padding: 13px 12px 10px;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.5s ease;
    border: 1px var(--button-outline) solid;
    border-radius: 4px;
    font-family: 'Free Sans', arial, helvetica, sans-serif;
    text-transform: uppercase;
}

.form-field.submit-button button:hover {
    cursor: pointer;
    color: var(--button-color);
    background: transparent;
}

.input-group.hidden {
    display: none;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000000;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #000000;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #000000;
}
:-moz-placeholder { /* Firefox 18- */
  color: #000000;
}

/* Change the to any color, but not transparent */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #ffffff inset; -webkit-text-fill-color: #000000 !important;  border-bottom: 1px solid #333333; border-top: none;border-left: none; border-right: none;
}


/* for iOS */
textarea,
input,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
-webkit-appearance: none;
/* border-radius: 0; */
}

#thankyou-mailinglist {
    margin: 0 auto;
    padding: 5px;
    line-height: 100%;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 17px;
    font-family: 'Free Sans', arial, helvetica, sans-serif;
    color: #ffffff;
}


/**** PRESAVE ****/

.presave-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.presave-wrap .presave {
    margin: 0 10px;
}

.presave.presave-store .button {
    margin-top: 18px;
}

.presave .button a {
    width: 260px !important;
    display: inline-block;
    padding: 7px 0 4px;
}

p.rules.text_content {
    margin-top: 30px;
}

.thankyou {
    display: none;
    position: absolute;
    top: 300px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    text-transform: uppercase;
    font-family:'Free Sans', arial, helvetica, sans-serif;
    color: var(--body-color);
    font-weight: 700;
    z-index: 999999;
}

.thankyou .content {
    position: relative;
    padding: 0;
    z-index: 1000;
    padding: 35px;
    background: rgba(0,0,0,.95);
    line-height: 135%;
    font-size: 22px;
    border: 3px solid var(--border);
    color: var(--body-color);
    text-align: center;
}

.thankyou .content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-family:'bebas neue', arial, helvetica, sans-serif;
    font-size: 36px;
    color: var(--body-color);
    font-weight: 400;
    letter-spacing: 1px;
    padding-left: 15px;
}


.thankyou a {color: var(--link); font-size: 14px;}
.thankyou a:hover {color: #ffffff;}

/* Apple pre-save Form Style */

form#apple_music_form {
    margin-top: 9px;
}

form#apple_music_form .input-group {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

input#apple_music_email_address {
    background: #ffffff;
    padding: 0px 10px;
    font-size: 15px;
    text-transform: none;
    color: #000000;
    border: 1px var(--border) solid;
    font-family: 'Free Sans', arial, helvetica, sans-serif;
    font-weight: 600;
    /* font-style: italic; */
    height: 40px;
    width: 200px;
    border-radius: 4px 0 0 4px;
}

button.btn-outline-secondary {
    margin-left: -4px;
    background: var(--button-outline);
    border: 1px  var(--button-outline) solid;

    /*6ABD6E*/

    font-family:'Free Sans', arial, helvetica, sans-serif;
    font-weight:700;
    padding: 10px;
    font-size: 18px;
    text-transform: uppercase;
    color: #000000;
    height: 42px;
    border-radius: 0 4px 4px 0;
    border-left: 0px;
}

button.btn-outline-secondary:hover {
    background-color: rgba(0,0,0,0.7);
    color: var(--button-outline);
    cursor: pointer;
    border-color:  var(--button-outline);
    border-left: 0px;
}



/**** FOOTER ****/


#footer {
    clear: both;
    position: relative;
    margin: 0px auto;
    padding: 55px 0% 85px;
    text-align: center;
    font-size: 9px;
    color: var(--footer-color);
    font-family: 'Free Sans', arial, helvetica, sans-serif;
    line-height: 180%;
    text-transform: uppercase;
    letter-spacing: 0px;
    width: 70%;
}


#footer .legal-text {
    clear: both;
    position: relative;
    padding: 0px 0 0px;
}

#footer .copyright {
    text-align: center;
    padding-bottom: 10px;
    max-width: 100%;
}

#footer a {
    color: var(--link);
    text-decoration: underline;
}

#footer a:hover {
    color: #ffffff;
}



/* Responsive CSS */

@media only screen and (max-width: 1200px) {
    .presave-wrap {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 1150px) {
     .content_area .header {
        font-size: 8vw;
    }
    .content_area .one-header {
        font-size: 16vw;
    }
    .content_area .two-header {
        font-size: 5.125vw;
    }
    .content_area .three-header {
        font-size: 3.75vw;
    }
    .content_area .four-header {
        font-size: 1.5vw;
    }
    .content_area .sub-header {
        font-size: 1.7vw;
    }


    #newsletter .content_inner {
        max-width: 70%;
    }



    .merch_wrap .merch-image {margin-top: 10px;}
}


@media only screen and (max-width: 850px) {
    .presave-wrap {
        flex-direction: column;
    }
    
    a.presave-button {
        padding: 7px 0px 4px !important;
    }    

    .content_area .one-header {
        font-size: 16vw;
            margin: 5px auto -17px;

    }
    .content_area .two-header {
        font-size: 5vw;
    }
     .content_area .three-header {
        font-size: 3.25vw;
         margin: 12px auto 0px;
    }
    .content_area .four-header {
        font-size: 1.5vw;
    }
}

@media only screen and (max-width: 768px) {
    nav {
        margin-top: 3px;
        /* width: 36px; */
        height: 18px;
    }

    .header_wrap .header {
        margin: 0 auto;
        padding: 8px;
    }

    .nav-mobile {display: block;}
    .nav-desktop {display: none;}
    
    .nav-mobile #nav-toggle span {
        display: block;
        width: 20px;
        height: 3px;
        background: #000000;
        -webkit-transition: color 250ms linear, background-color 250ms linear, border-color 250ms linear, opacity 250ms linear;
        transition: color 250ms linear, background-color 250ms linear, border-color 250ms linear, opacity 250ms linear;
        margin-left: 12px;
    }
    
    .nav-mobile #nav-toggle span+span {
        margin-top: 3px;
    }
    
    .nav-mobile .inner-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 10px 0;
        background: var(--header-background);
        z-index: 9999;
        text-align: center;
    }
    
    .nav-mobile .inner-nav #close {
        display: inline-block;
        vertical-align: middle;
        opacity: 1;
        max-width: 18px;
        position: absolute;
        left: 28px;
        top: 17px;
    }
    
    .nav-mobile .inner-nav .menu {
        list-style: none;
        padding: 65px 0 0;
        margin: 0;
    }

    .nav-mobile .inner-nav .external-link {
        list-style: none;
        padding: 0px 0 0;
        margin: 0;
    }
    
    .nav-mobile .inner-nav .menu>li, .nav-mobile .inner-nav .external-link>li {
        display: block;
        margin-top: 20px;
        font-family: 'bebas neue', arial, helvetica, sans-serif;
    }
    
    .nav-mobile .inner-nav .menu>li>a, .nav-mobile .inner-nav .external-link>li>a {
        font-weight: normal;
        font-size: 40px;
        line-height: 100%;
        color: #000000;
    }
    
    .nav-mobile .inner-nav .menu>li>a:hover, .nav-mobile .inner-nav .external-link>li>a:hover, .inner-nav .menu>li>a:focus {
        color: var(--link-hover);
    }
    
    .nav-mobile .inner-nav .social-wrap {
        margin-top: 60px;
    }

    .inner-nav .social-wrap img {
        max-height: 30px;
        margin: 0 5px;
    }

    .outer_wrapper {
        padding-top: 37px;
    }

    .left_border, .right_border {top:75px;}
    .left_border, .right_border {height: calc(100% - 75px);}

    .form-field input {
        width: 220px;
    }

    #footer {
        padding-bottom: 35px;
    }

    @keyframes bg_move {
        to {
          transform: translateY(105px);
        }
      }

    .left_border .floater-left {
        animation: left-floater-move 285s infinite; 
    }
    
    .right_border .floater-right {
        animation: right-floater-move 445s infinite;
    }
    
    .left_border .floater-left-b {
        animation: left-floater-move 265s infinite;
    }
    
    .right_border .floater-right-b {
        animation: right-floater-move 395s infinite;
    }
}


@media only screen and (max-width: 767px) {
.merch_wrap {
    flex-direction: column;
}
.content_area#shop .content_inner, .content_area#eyelight .content_inner {
    max-width: 60%;
    width: 700px;
}
}



@media only screen and (max-width: 667px) {
    .form-field input {
        width: 180px;
    }
}



@media only screen and (max-width: 560px) {
    .left_border {
        width: 10%;
    }
    .right_border {
        width: 10%;
    }
    .right_border .floater-right {
        margin-right: 15%;
    }

    .content_area .content_inner {
        max-width: 70%;
    }
    #album.content_area {
        padding-top: 70px;
    }
    .content_area {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .content_area .button a {
        font-size: 3.5vw;
    }

    .presave .button a {
        width: 180px !important;
        display: inline-block;
        padding: 7px 0 4px !important;
    }
    input#apple_music_email_address {
        width: 150px;
    }
    
    .form-field input {
        width: 80%;
    }

    .content_area .one-header {
        font-size: 18vw;
        margin: 5px auto -7px;

    }
    .content_area .two-header {
        font-size: 5.5vw;
    }
     .content_area .three-header {
        font-size: 3.65vw;
         margin: 6px auto 0px;
    }
    .content_area .four-header {
        font-size: 1.60vw;
        padding-bottom: 7px;
        margin: 2px auto 0px;
    }
}

@media only screen and (max-width: 414px) {
    .nav-mobile .inner-nav .menu>li>a, .nav-mobile .inner-nav .external-link>li>a  {
        font-size: 8vw;
    }

    .content_area .header {
        font-size: 10vw;
    }
    .content_area .mid-header {
        font-size: 10vw;
    }
    .content_area .sub-header {
        font-size: 2.2vw;
    }
    .bit-widget .bit-venue, .bit-widget .bit-event .bit-location, .bit-widget .bit-event .bit-date {
        text-align: center;
    }
    .bit-widget {
        font-size: 14px;
    }
    .content_area .cover img {
        max-width: 90%;
    }
    .bit-widget {
        min-width: 100% !important;
    }



}