@font-face {
    font-family: 'cr'; /*a name to be used later*/
    src: url('fonts/cr.ttf'); /*URL to font*/
}
@font-face {
    font-family: 'cb'; /*a name to be used later*/
    src: url('fonts/cb.ttf'); /*URL to font*/
}
@font-face {
    font-family: 'cl'; /*a name to be used later*/
    src: url('fonts/cl.ttf'); /*URL to font*/
}
@font-face {
    font-family: 'rbl'; /*a name to be used later*/
    src: url('fonts/rbl.ttf'); /*URL to font*/
}
@font-face {
    font-family: 'rb'; /*a name to be used later*/
    src: url('fonts/rb.ttf'); /*URL to font*/
}
@font-face {
    font-family: 'rl'; /*a name to be used later*/
    src: url('fonts/rl.ttf'); /*URL to font*/
}
body{
    counter-reset: section;
	font-family: cr;
}

/*index.html*/
header#bg_header {
    background-color: #56627b;
    max-height: 80px !important;
}
#header_inner {
    padding: 21px 0px;
}
div#logo {
    background-color: #418FDE;
    padding: 25px 14px;
    z-index: 99999;
    top: 0;
    left: 0;
}
.form-group.with-decs {
    display: block;
    text-align: right;
}
#header_form {
    align-items: start;
}
#header_form input{ 
	max-height: 35px;
	width: 190px;
	font-family: cr;
	font-size: 16px;
	color: #61604f;
	border:transparent;
}
.form-group.with-decs span {
    display: block;
    line-height: 15px;
}
#header_form a {
    color: white;
    font-size: 12px;
    padding: 0 1rem !important;
}
#header_form button {
    width: 130px;
    color: white;
    background-color: #418FDE;
    border-radius: 30px;
    font-family: cr;
    font-size: 18px;
    line-height: 25px;
}
.logout{
    background-color: #56627b;
    color: #ffffff;
    font-size: 15px;
    font-family: cb;
    padding: 8px 12px !important;
    margin-top: 5px;
    margin-left: 15px;
    display: flex !important;
    align-items: center;
}
.logout:hover{
    color: #ffffff !important;
} 
.logout img{
    margin-right: 8px;
}
#main-content{
	background-image: url("images/bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
    align-items: center;
}
#main-content-heading {
    color: #56627b;
    font-family: cb;
    font-size: 56px;
    -webkit-text-stroke: 2px #418FDE;
    font-weight: bolder;
}
#main-content .media{
	margin: 40px 0px 33px; 
}
#main-content .media img{
	margin:0px 32px 0px 0px; 
}
#main-content .media p{
	font-family: cl;
	font-size: 28px;
	color: #418FDE;
}
#main-content .media p .span_bold{
	color: #418FDE;
	font-family: cb;
}
#main-content #sign_up_form{
	background-color: #418FDE;
	color: white;
}
#main-content #sign_up_form h1{
	color: #56627b;
	font-family: cb;
	font-size: 60px;
}
#main-content #sign_up_form p{
	font-family: cr;
	font-size: 16px;
}
#main-content #sign_up_form .my-2.d-flex input {
    width: 48%;
}
#main-content #sign_up_form input{
	font-size: 17px;
	font-family: cr;
	color: #6f6e7a;
	border:transparent;
}
#main-content #sign_up_form label{
	font-size: 17px;
	font-family: cr;
}
#main-content #sign_up_form select{
	font-size: 17px;
	font-family: cr;
	color: #6f6e7a;
	border:transparent;
}
#main-content button{
	width: 140px;
	margin-right: auto;
	margin-left: auto;
	background-color: #56627b;
	color: white;
	border-radius: 30px;
	font-size: 20px;
	font-family: cr;
}
.agreement {
    align-items: start;
}
.agreement img {
    margin-top: 18px !important;
    width: 22px;
}
.agreement label {
    padding-left: 5px;
}

.form-check-label {
  position: relative;
}
.form-check-inline.radio .form-check-label {
    padding-left: 33px;
}

/* Hide the browser's default radio button */
.form-check-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.form-check-label:hover input[type="radio"] ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.form-check-label input[type="radio"]:checked ~ .checkmark {
  background-color: #56627b;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.form-check-label input[type="radio"]:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.form-check-label .checkmark::after {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #56627b;
}

/* Style the indicator (dot/circle) */
.form-check-label .checkmark::before { 
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #418FDE;
}



/* Footer CSS */
#bg_footer {
    background-color: #56627b;
    position: relative;
}
#bg_footer::before{ 
  content: "";
  background-color: #418FDE;
  max-height: 21px;
  width: 70px;
  position: absolute;
  z-index: 99999;
  left: 0px;
  top: 38%;
  padding: 10px;
}
#bg_footer::after{ 
  content: "";
  background-color: #418FDE;
  max-height: 21px;
  width: 510px;
  position: absolute;
  z-index: 99999;
  right: 0px;
  top: 38%;
  padding: 10px;
}
.loader {
    background-image: url("images/loader.gif");
    background-repeat: no-repeat;
    display: block;
    height: 20px;
    background-position: center;
    background-size: 10% auto;
    margin-bottom: 20px;
}
.main-footer {
    justify-content: center;
    background-color: #56627b;
    color: #ffffff;
    font-size: 18px;
}


/*fannectics-profile.html*/

#profile_section1 #profile_logo {
    background-color: #418FDE;
    padding: 15px 15px;
    z-index: 99999;
    top: 0px;
    text-align: center;
    left: 0;
}
#profile_logo img{
    width: 100%;
    width: 120px;
}
#profile_section1 #profile_search_form {
    padding: 25px 35px;
    margin-left: 155px;
}
#profile_section1 #profile_search_form .input-group{
	border: 1px solid #418FDE;
}
#profile_section1 #profile_search_form .input-group span{
	background-color: #56627b;
}
#profile_section1 #profile_search_form .input-group input{
	height: 40px;
	color: #898989;
	font-family: cr;
	font-size: 20px;
}
/*#profile_section1 ul li a img {
    width: 30px;
}*/
.nav-link img {
    margin-bottom: 2px !important;
}
#profile_section1 ul {
    padding: 23px 0px 19px 30px;
    float: right;
}
#profile_section1 ul li .span, #profile_section1 ul li .span1 {
    background-color: #56627b;
    color: white;
    right: 4px;
    top: 9px;
    border-color: white !important;
    line-height: 16px;
    width: 18px;
    height: 18px;
    padding: 0;
    font-weight: 100;
}
#profile_section1 ul li {
    padding: 0;
}
#profile_section1 ul li a {
    display: inline-block;
    padding: 10px 6px;
}
.notification_data .drop_head {
    background-color: #f0f0f0;
}
.notification_data .drop_head h2{

}
#profile_section1 ul li .span1 {
    right: 4px;
    top: 22px;
}
#profile_section2{
	background-color: #56627b;
}
#profile_section2 .navbar button{
	color: white;
}
#my_navbar ul {
    display: flex;
    width: 100%;
    justify-content: center;
}
#my_navbar ul li {
    flex: 1 1 auto !important;
    justify-content: center;
}
#profile_section2 a {
    text-transform: uppercase;
    color: white;
    font-size: 12px;
    font-family: cb;
    padding: 12px 0 !important;
    border-bottom: 2px solid transparent;
    text-align: center;
}
#profile_section2 a img {
    max-width: 25px;
}
#profile_section2 .active,
#profile_section2 a:active,
#profile_section2 a:hover,
#profile_section2 a:focus {
  background-color: #418FDE;
  border-bottom: 2px solid #56627b;
}
#profile_section3 {
    background-image: url("images/profile_bg.png");
    background-repeat: no-repeat;
    background-position: center 60%;
    background-size: cover;
    min-height: 250px;
}
.main-outer-profile {
    margin-top: -100px;
}
#profile_section4 div#profile_pic_outer {
    width: 200px;
    border-radius: 100%;
    border: 7px solid white;
    height: 200px;
    margin: 0 auto; 
}
.main-outer-profile h1 {
    font-family: cb;
    color: #418FDE;
    margin: 0;
}
#profile_section4 div#profile_pic {
    height: 186px;
    text-align: center;
    border: 4px solid #024;
    border-radius: 100%;
    overflow: hidden;
    width: 186px;
}
#profile_pic img {
    width: 100%;
}
#profile_section4 h1.position-absolute {
    top: 129px;
    right: 15%;
    font-size: 36px;
    font-family: cb;
    color: #418FDE;
}
#profile_section4 img.align-self-center {
    padding-bottom: 5px;
}
#profile_section4 h4 {
    color: #418FDE;
    padding: 0px 12px;
    font-family: cb;
    font-size: 16px;
    margin-top: 15px;
}
#profile_section4_inner1 {
    margin-bottom: 25px;
}
#profile_section4 h4 span{
	font-size: 22px;
    top: -4px;
    right: 12px;
}
#profile_section4 .progress {
    height: 25px;
    background-color: transparent;
    border: 2px solid #418FDE;
    border-radius: 20px;
}
#profile_section4 .progress-bar.progress-bar-striped.p-4 {
    background-color: #418FDE;
    height: 25px !important;
}
#profile_section4 a.btn, #profile_section4 button.btn {
    background-color: #56627b;
    width: 100%;
    color: white;
    border: transparent;
    border-radius: 0px;
    text-align: center;
    font-size: 25px;
    font-family: cb;
    text-transform: uppercase;
}
#profile_section4 button.btn{
    margin-top: 21px;
}
#profile_section4 button.btn img {
    margin-right: 12px;
    position: relative;
    top: -3px;
}
.achievements {
    margin-top: 0;
    border: 1px solid #56627b;
    flex: 0 0 30%;
    margin-left: 2%;
}
.achievements h2 {
    text-align: center;
    font-size: 25px;
    font-family: cb;
    background-color: #56627b;
    color: #fff;
    padding: 10px 0;
    margin: 0 !important;
    text-transform: uppercase;
}
.achievements li.list-group-item.border-0.rounded-0 {
    padding: 12px 7px;
    display: inline-block;
}
.achievements li.list-group-item.border-0.rounded-0 img {
    width: 50px;
}
.achievements ul.list-group.list-group-horizontal.border-0.rounded-0{
    display: inline-block;
}
.display-none {
    display: none;
}
.fixed-right-position{
    position: fixed;
    top: 0;
    width: 285px;
}
.fixed-left-position {
    position: fixed;
    top: 0;
    width: 285px;
}
#profile_section4 #profile_section4_inner2_center .card {
    border: 3px solid #56627b;
}
.single-post div.header {
    position: relative;
    min-height: 207px;
    background-color: #111;
}
.clickable{
    cursor: pointer;
}
.single-post div.dropdown {
    position: absolute;
    top: 6px;
    right: 0px;
}
.single-post div.remove_btn {
    position: absolute;
    top: 2px;
    right: 2px;
    padding: 0 10px;
    z-index: 333333;
}
.single-locker div.remove_icon {
    position: absolute;
    top: 50%;
    right: -45px;
    padding: 0px 8px 3px;
    z-index: 333333;
    border-radius: 100%;
    border: 3px solid #418FDE;
    transform: translateY(-50%);
}
.dropdown-item.active, 
.dropdown-item:hover, 
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #418FDE;
}
.single-post button.dropmark {
    background-color: transparent;
    border: 0;
}
.single-post button.dropmark img{
    width: 17px;
}
#profile_section4 #profile_section4_inner2_center a.nav-link.border-0 {
    font-size: 12px;
    font-family: cl;
    background-color: #418FDE;
    border-radius: 0px;
    color: white;
    position: relative;
    padding: 15px 20px 15px 40px;
}
#profile_section4 #profile_section4_inner2_center a.nav-link.border-0::before {
    position: absolute;
    left: 14px;
    top: 14px;
}
.write-post-icon a::before {
    content: url("images/icon/pincel_icon_white.png");
}
.photo-video-icon a::before {
    content: url("images/icon/video_icon_white.png");
}
.event-icon a::before {
    content: url("images/icon/event_icon_white.png");
}
.merchandising-icon a::before {
    content: url("images/icon/perss_icon_white.png");
}
#profile_section4 #profile_section4_inner2_center .card-header{
	background-color: #418FDE;
	border-radius: 0px;
}
#profile_section4 #profile_section4_inner2_center .nav-tab a.nav-link.border-0 .active,
#profile_section4 #profile_section4_inner2 a.nav-link.border-0:active,
#profile_section4 #profile_section4_inner2 a.nav-link.border-0:hover,
#profile_section4 #profile_section4_inner2 a.nav-link.border-0:focus,
#profile_section4 #profile_section4_inner2 a.nav-link.border-0.active {
    background-color: #56627b !important;
    color: #41293d !important; 
}
.write-post-icon a.active::before,
.write-post-icon a:hover::before,
.write-post-icon a:focus::before,
.write-post-icon a:active::before {
    content: url("images/icon/pincel_icon.png");
}
.photo-video-icon a.active::before,
.photo-video-icon a:hover::before,
.photo-video-icon a:focus::before,
.photo-video-icon a:active::before {
    content: url("images/icon/video_icon.png");
}
.event-icon a.active::before,
.event-icon a:hover::before,
.event-icon a:focus::before,
.event-icon a:active::before {
    content: url("images/icon/event_icon.png");
}
.merchandising-icon a.active::before,
.merchandising-icon a:hover::before,
.merchandising-icon a:focus::before,
.merchandising-icon a:active::before {
    content: url("images/icon/perss_icon.png");
}
#profile_section4 #profile_section4_inner2 a.nav-link.border-0:hover::after,
#profile_section4 #profile_section4_inner2 a.nav-link.border-0.active::after{
	display: inherit;
}
#profile_section4 #profile_section4_inner2 a.nav-link.border-0::after{
    content: "";
    background-color: #56627b;
    position: absolute;
    z-index: 99999;
    right: 42%;
    bottom: -7px;
    padding: 8px;
    transform: rotate(46deg);
    display: none;
}
.home-total-count-box {
    border: 2px solid;
    border-radius: 3px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.home-total-count-box.blue-color:hover,
.home-total-count-box.blue-color:hover b {
    color: #00172d !important;
}
.home-total-count-box.blue-color:hover .progress-bar,
.home-total-count-box.blue-color:hover > button {
    background-color: #00172d !important;
}
.home-total-count-box.orange-color:hover,
.home-total-count-box.orange-color:hover b {
    color: #363e4f !important;
}
.home-total-count-box.orange-color:hover .progress-bar,
.home-total-count-box.orange-color:hover > button {
    background-color: #363e4f !important;
}
.home-total-count-box.green-color:hover,
.home-total-count-box.green-color:hover b {
    color: #003312 !important;
}
.home-total-count-box.green-color:hover .progress-bar,
.home-total-count-box.green-color:hover > button {
    background-color: #003312 !important;
}
.home-total-count-box-inner {
    padding: 10px 12px;
}
.home-total-count-number {
    font-size: 26px;
    font-family: cb;
    padding-right: 10px;
    text-transform: uppercase;
}
.home-total-count-box-inner > span {
    vertical-align: middle;
}
.home-total-progress-bar-title {
    display: block;
    padding-bottom: 5px;
    padding-top: 0px;
    color: #666666;
    font-size: 14px;
    min-height: 35px;
}
.home-total-progress-bar-title b{
    font-size: 20px;
    margin-right: 3px;
}
.blue-color b{
    color: #418FDE;
}
.green-color b{
    color: #005e20;
}
.orange-color b{
    color: #56627b;
}
.home-total-count-box-inner .desc{
    font-size: 13px;
    color: #a0a0a0;
    min-height: 60px;
}
.home-total-count-percentage {
    font-size: 13px;
}
.home-total-count-box-inner .progress{
    height: 3px;
}
.home-total-count-box button {
    display: block;
    text-align: center;
    padding: 12px;
    line-height: normal;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    color: #fff;
    font-family: cb;
    font-size: 18px;
    border: 0;
}
.home-total-count-box > a > span {
    color: #fff;
    font-size: 18px;
    font-family: cb;
}
.home-total-count-box > a > span > i {
    font-weight: inherit;
}
.blue-bg {
    background-color: #418FDE !important;
}
.green-bg {
    background-color: #005e20 !important;
}
.orange-bg {
    background-color: #56627b !important;
}
.orange-color {
    color: #56627b !important;
}
.green-color {
    color: #005e20 !important;
}
.blue-color {
    color: #418FDE !important;
}
#merchandising_slider,
.mer-slider {
    position: relative;
}
#merchandising_slider .item {
    text-align: center;
    border: 2px solid #418FDE !important;
    overflow: hidden;
    margin: 0;
}
#merchandising_slider .owl-item {
    overflow: hidden;
}
#merchandising_slider .item img {
    width: auto;
    margin: 30px auto;
    height: 167px;
}
#merchandising_slider .item a {
    background-color: #418FDE;
    display: block;
    color: #fff;
    border-radius: 0;
    font-size: 16px;
    font-family: cb;
    text-transform: initial;
    padding: 15px 0;
}
#merchandising_slider .item a span{
    font-size: 12px;
    font-family: cr;
    margin: 0 5px;
}
#merchandising_slider .owl-nav,
.mer-slider .owl-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
}
#merchandising_slider .owl-nav .owl-prev, 
#merchandising_slider .owl-nav .owl-next,
.mer-slider .owl-nav .owl-prev, 
.mer-slider .owl-nav .owl-next {
    background-color: transparent !important;
    padding: 0 !important;
    border-radius: 100% !important;
    border: 1px solid #024 !important;
    width: 40px !important;
    line-height: 20px !important;
    height: 40px !important;
}
#merchandising_slider .owl-nav .owl-prev img, #merchandising_slider .owl-nav .owl-next img,
.mer-slider .owl-nav .owl-prev img, .mer-slider .owl-nav .owl-next img{
    position: relative;
    top: -1px;
}
#merchandising_slider .owl-nav .owl-prev,
.mer-slider .owl-nav .owl-prev {
    left: -60px;
    position: absolute;
}
#merchandising_slider .owl-nav .owl-next,
.mer-slider .owl-nav .owl-next {
    right: -60px;
    position: absolute;
}











.post-overlay{
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    transition: opacity 3s;
    display: none;
    opacity: 0;
}

.upload-btn,
#file_upload .dz-progress,
#file_upload .dz-error-message,
#file_upload .dz-success-mark,
#file_upload .dz-error-mark,
#file_upload .dz-details {
    display: none;
}

.upload-btn.active{
    display: block;
}

.post-overlay.active{
    display: block;
    transition: opacity 3s;
    opacity: .6;
}

.dz-preview {
    display: inline-block;
    padding: 3px;
    margin-top: 5px;
}

.dz-default.dz-message{
    text-align: center;
}

#file_upload {
    padding: 10px;
    border: 2px dashed #ccc;
    color: #ccc;
    margin-top: 10px;
    cursor: pointer;
}

.create-post.focused {
    position: relative;
    z-index: 500 !important;
}




/*#profile_section4_inner2_center{
	max-height: 914px;
	overflow-y: scroll;
}*/
#profile_section4 #profile_section4_inner2_center a.nav-link.border-0 img {
    margin: 5px;
}
/* width */
.sidebar_right::-webkit-scrollbar,
.sidebar_left::-webkit-scrollbar ,
.sidebar_left::scrollbar {
  width: 5px;
  border-radius: 30px !important;

}

/* Track */
.sidebar_right::-webkit-scrollbar-track,
.sidebar_left::-webkit-scrollbar-track,
.sidebar_left::scrollbar-track {
  background: #f1f1f1;
  border-radius:100px; 
}
 
/* Handle */
.sidebar_right::-webkit-scrollbar-thumb,
.sidebar_left::-webkit-scrollbar-thumb,
.sidebar_left::scrollbar-thumb {
  background: #888;
  border-radius:100px;
}

/* Handle on hover */
.sidebar_right::-webkit-scrollbar-thumb:hover,
.sidebar_left::-webkit-scrollbar-thumb:hover,
.sidebar_left::scrollbar-thumb:hover {
  background: #555;
  cursor: pointer !important; 
}


#profile_section4 #profile_section4_inner2_center textarea.form-control.border-0 {
    padding: 0px;
    font-size: 15px;
    font-family: cr;
    color: #418FDE !important;
}
#profile_section4 #profile_section4_inner2_center textarea.form-control.border-0:active,
#profile_section4 #profile_section4_inner2_center textarea.form-control.border-0:focus {
    outline: transparent;
    box-shadow: none;

}

.create-post li.list-group-item.border-0.rounded-0 {
    background-color: transparent;
    padding: 12px 0px 9px 2px;
}
.create-post li.list-group-item.border-0.rounded-0 a {
    padding: 10px 16px;
    border-radius: 100px;
    background-color: #e5e5e5;
    margin: 0px 2px;
    font-size: 12px;
    font-family: cr;
    text-decoration: none;
    color: #418FDE;
}
.create-post li.list-group-item.border-0.rounded-0 a.active,
.create-post li.list-group-item.border-0.rounded-0 a:hover{
    background-color: #56627b;
    color: #ffffff;
}
.create-post a.btn.rounded-0 {
    /* margin-right: 0px !important; */
    background-color: #418FDE !important;
    color: white !important;
    font-family: cb !important;
    font-size: 18px !important;
    padding: 2px 20px !important;
}

.single-post h3 {
    font-size: 30px;
    font-family: cb;
    color: #418FDE;
    line-height: 32px;
}
.single-post span{
	color: #aaaaaa;
	font-size: 14px;
	font-family: cr;
}
.single-post ul.list-group.list-group-horizontal.border-0.rounded-0 {
    background-color: #418FDE;
    display: table;
}
.single-post li.list-group-item.border-0.rounded-0 {
    background-color: transparent;
    padding: 10px 0px 11px 0px;
    display: table-cell;
    width: 33.3333333%;
}
.single-post ul li a {
    font-size: 16px;
    font-family: cb;
    color: white;
    background-color: transparent;
    border-right: 2px solid #56627b;
    border-radius: 0px;
    display: block;
    text-align: center;
    text-decoration: none;
    line-height: 30px;
    padding: 0 0 0 40px;
    position: relative;
    text-transform: uppercase;
}
.single-post ul li a.chant {
    padding: 0 0 0 20px;
}
.single-post ul li a.active,
.single-post ul li a:active,
.single-post ul li a:hover{
   color: #56627b !important;
}
.single-post ul li a::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    width: 30px;
    height: 30px;
    background-size: cover;
    background-repeat: no-repeat;
}
.single-post ul li a.support::before {
    background-image: url("images/icon/user_icon_white.png");
}
.single-post ul li a.shout::before {
    background-image: url("images/icon/shout_icon_white.png");
}
.single-post ul li a.share::before {
    background-image: url("images/icon/share_icon_white.png");
}
.single-post ul li a.attending::before {
    background-image: url("images/icon/circle_tick_white.png");
}
.single-post ul li a.interest::before {
    background-image: url("images/icon/star_icon.png");
}
.single-post ul li a.chant::before {
    background-image: url("images/icon/chant_icon_white.png");
}
.single-post ul li a.support.active::before,
.single-post ul li a.support:active::before,
.single-post ul li a.support:hover::before{
    background-image: url("images/icon/user_icon.png");
}
.single-post ul li a.shout.active::before,
.single-post ul li a.shout:active::before,
.single-post ul li a.shout:hover::before{
    background-image: url("images/icon/shout_icon.png");
}
.single-post ul li a.share.active::before,
.single-post ul li a.share:active::before,
.single-post ul li a.share:hover::before{
    background-image: url("images/icon/share_icon.png");
}
.single-post ul li a.attending.active::before,
.single-post ul li a.attending:active::before,
.single-post ul li a.attending:hover::before{
    background-image: url("images/icon/circle_tick.png");
}
.single-post ul li a.interest.active::before,
.single-post ul li a.interest:active::before,
.single-post ul li a.interest:hover::before{
    background-image: url("images/icon/star_icon_orange.png");
}
.single-post ul li a.chant.active::before,
.single-post ul li a.chant:active::before,
.single-post ul li a.chant:hover::before{
    background-image: url("images/icon/chant_icon.png");
}
.single-post h6 {
    color: #418FDE;
    font-family: cb;
    font-size: 16px;
    margin: 0px;
    text-align: left;
    padding: 0px !important;
}
.single-post p{
	font-family: cr;
	font-size: 12px;
	color: #868686;
}
.single-post .red a{
	color: red;
}
.single-post .blue a{
	color: #418FDE;
}
.single-post .blue a.active{
    color: #56627b;
}
.new_comment{
    display: none;
}
.single-post .reply {
    background-color: #f5f5f5;
    padding: 10px 20px;
    border-radius: 6px;
}
.single-post .reply p{
    margin: 0px;
}
.single-post .clearfix a.float-right {
    color: #c3c3c3;
    text-decoration: none;
}
.single-post .input-group.mb-3 {
    border: 2px solid #56627b;
    border-radius: 5px;
}
.single-post .input-group.mb-3 input {
    background-color: #f5f9ff !important;
    font-size: 12px;
    font-family: cl;
    color:  #868686;
    border-right: 0px;
    padding: 10px 12px !important;
}

#shop-slider .card {
    border: 2px solid #418FDE !important;
    width: 250px;
    padding: 12px;
    text-align: center;
    border-radius: 0px;
}
#shop-slider .slider_img{
    background-color: transparent !important;
    border-color: #418FDE !important;
    text-align: center;
    padding:0px;

}
#shop-slider .slider_img img{
    width: 100%;
}
#shop-slider .card h3{
    color:  #418FDE;
    font-size: 23px;
    font-family: cb;
    margin: 0;
}
#shop-slider .card p{
    color:  #b7b7b7;
    font-size: 13px;
    font-family: cr;
    margin-bottom: 0px !important;
}
#shop-slider .card button,
#shop-slider .card a {
    font-size: 17px;
    font-family: cr;
    width: 130px;
    margin-top: 10px;
}
a.carousel-control-prev {
	opacity: 1 !important;
	width: auto !important;
	left: -15px; 
}
a.carousel-control-next {
	opacity: 1 !important;
	width: auto !important;
	right: -15px; 
}
span.carousel-control-prev-icon {
	background-image: none;
    width: 40px;
    height: 40px;
    border: 2px solid #418FDE;
    border-radius: 100px;
    color: #418FDE !important;
    text-align: center;
    line-height: 33px;
    background-color: white;
}
span.carousel-control-next-icon {
	background-image: none;
    width: 40px;
    height: 40px;
    border: 2px solid #418FDE;
    border-radius: 100px;
    color: #418FDE !important;
    text-align: center;
    line-height: 33px;
    background-color: white;
}
#profile_section4_inner2_center .single-post span.position-absolute {
    position: absolute!important;
    top: 0;
    left: 0;
    text-align: center;
    color: white;
    font-size: 60px !important;
    font-family: cb;
    width: 100%;
    line-height: 120px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
.input-group-append span {
    background-color:  #f5f9ff;
    border-left: transparent;
    cursor: pointer;
}

#profile_section4_inner2_center .single-post .d-flex.position-absolute {
    position: absolute!important;
    top: -70px;
}
#profile_section4_inner2_center .single-post .d-flex .date {
    background-color: #418FDE;
    width: 90px;
    height: 90px;
    color: white;
    text-align: center;
    font-size: 60px;
    font-family: cb;
    padding: 23px 13px 0px;
    margin-right: 12px;
    line-height: 20px;
}
.single-post .d-flex.position-absolute .date span{
    color: white;
    text-align: center;
    font-size: 12px;
    font-family: cr;
}
.single-post .d-flex.position-absolute #rcd h2.text-left.d_headind {
    font-size: 32px;
    font-family: cb;
    color: white !important;
    margin-bottom: 0px;
    margin-top: 5px;
}
.single-post .d-flex.position-absolute #rcd p {
    font-size: 16px;
    font-family: cr;
    color: white !important;
    margin-bottom: 0px;
}
.single-post .d-flex.position-absolute #rcd span {
    font-size: 10px !important;
    font-family: cr;
    color: #757575;
    margin-bottom: 0px;
}
.single-post #p{
	font-size: 16px;
	font-family: cr;
	color: #9d9d9d;
}
.single-post .position-absolute.img1 {
    position: absolute!important;
    left: 27px;
}
.single-post .position-absolute.img2 {
    position: absolute!important;
    left: 34px;
}
.single-post .position-absolute.img3 {
    position: absolute!important;
    left: 41px;
}
.single-post .position-absolute.img4 {
    position: absolute!important;
    left: 48px;
}
.single-post .interested,
.single-post .interested span{
	font-size: 16px;
	font-family: cb;
	color: #418FDE;
}
.single-post .interested span {
    margin: 0 5px 0 0;
}
.interested-images > span:first-child {
    margin-left: 0;
}
.interested-images > span {
    display: inline-block;
    margin-left: -25px;
    background-color: #ffffff;
    padding: 2px;
    border-radius: 100%;
    position: relative;
}
.single-post .col-sm-4 .media-body p {
    font-size: 14px;
    font-family: cb;
    color: #878787;
    margin: 0 !important;
    line-height: 18px;
}
.single-post .col-sm-4 .media-body span {
    font-size: 10px;
    line-height: 16px;
    display: block;
}
.single-post .col-sm-4 .media-body p span{
	font-size: 13px !important;
	font-family: cr !important;
	color: #418FDE !important; 
}
.single-post .col-sm-4 .media-body a{
	font-size: 13px !important;
	font-family: cr !important;
	color: #418FDE !important;
	text-decoration: underline; 
}
#profile_section4_inner2_right .card-header{
	background-image: url("images/crad-header-bg.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
#profile_section4_inner2_right .card-header h1 {
    text-transform: uppercase;
    font-family: cb;
    font-size: 44px;
    color: white;
    text-align: center;
    font-weight: bolder;
    line-height: 65px;
}
.sponsor h6 {
    font-size: 14px;
    font-family: cr;
    color: #b9b9b9;
}
#profile_section4_inner2_right .card-body{
    background-color:#f2f2f2 !important;
    padding: 0px;
}
#profile_section4_inner2_right .card-body a {
    text-decoration: none;
}
#profile_section4 #profile_section4_inner2_right .d-flex{
	padding: 16px 16px 0px;
}
#profile_section4 #profile_section4_inner2_right .d-flex:hover{
	background-color: #e9e9e9;
    padding: 16px 16px 0px;
}
#profile_section4 #profile_section4_inner2_right .d-flex:hover a{
	text-decoration: none;
}
#profile_section4 #profile_section4_inner2_right .d-flex:hover h2{
	font-size: 15px;
    font-family: cb;
    color: #56627b;
    margin: 0px;
}
#profile_section4 #profile_section4_inner2_right hr{
	background-color: #bdbdbd;
	height: 2px;
	padding: 0px 16px;
	margin: 0px 16px;
}
#profile_section4_inner2_right .date {
    background-color: #418FDE;
    height: 55px;
    width: 55px;
    color: white;
    text-align: center;
    font-size: 35px;
    font-family: cb;
    padding: 0px 9px;
    margin-right: 12px;
}
#profile_section4 #profile_section4_inner2_right h2{
    font-size: 15px;
    font-family: cb;
    color: #418FDE;
    margin: 0px;
    line-height: 6px;
}
#profile_section4 #profile_section4_inner2_right span.timing{
    font-size: 10px;
    font-family: cr;
    color: #bdbdbd;
}
#profile_section4 #profile_section4_inner2_right p{
    font-size: 11px;
    font-family: cr;
    line-height: 15px;
    color: #767676 !important;
}
#profile_section4_inner3{
	text-align: center !important;
	width: 100%;
	margin: 0px auto;
}
#profile_section4_inner3 span.lrg{
	width: 40px;
	height: 40px;
	border-radius: 25px;
    background-color: #bbc9dc;
    padding: 11px 20px;
}
#profile_section4_inner3  span.med{
	width: 30px ;
	height: 30px ;
	border-radius: 20px;
    background-color: #bbc9dc;
    padding: 6px 15px;
    margin: 0px 12px;
}
#profile_section4_inner3 span.smal{
	width: 20px ;
	height: 20px ;
	border-radius: 20px;
    background-color: #bbc9dc;
    padding: 1px 10px;
}

/*Profile Home CSS*/
#box1 .progress,
#box2 .progress,
#box3 .progress{
    border:none !important;
    background-color: #c2c2c2 !important;
    margin-bottom: 20px;
}
section#email_received #box1{
    border:2px solid #418FDE;
    border-radius: 4px;
    padding: 0px 16px 30px;
    position: relative;

}
section#email_received #box1::after{
    content: "";
    min-height: 20px;
    width: 100%;
    background-color: #418FDE;
    position: absolute;
    bottom: 0;
    left: 0;
}

section#email_received #box1 .progress-bar{
    background-color: #418FDE;
}
section#email_received #box2{
    border:2px solid #005e20;
    border-radius: 4px;
    padding: 0px 16px 30px;
    position: relative;
}
section#email_received #box2::after{
    content: "";
    min-height: 20px;
    width: 100%;
    background-color: #005e20;
    position: absolute;
    bottom: 0;
    left: 0;
}
section#email_received #box2 .progress-bar{
    background-color: #005e20;
}
section#email_received #box3{
    border:2px solid #56627b;
    border-radius: 4px;
    padding: 0px 16px 30px;
    position: relative;
}
section#email_received #box3::after{
    content: "";
    min-height: 20px;
    width: 100%;
    background-color: #56627b;
    position: absolute;
    bottom: 0;
    left: 0;
}
section#email_received #box3 .progress-bar{
    background-color: #56627b;
}
section#email_received h4 {
    font-size: 22px !important;
    color: #418FDE !important;
    padding: 0px !important;
}
#email_received .email_heading .right_text{
    color:#56627b !important;
}
.euro_sign{
    margin-right: 8px;
}
section#email_received p {
    font-size: 16px !important;
    color: #418FDE !important;
    margin-bottom: 4px !important;  
}
.right_number{
    width: 25%;
    text-align: right;
}
section#email_received h1 {
    font-size: 56px !important;
    color: #56627b !important;
    font-family: cb;
    text-align: center;
    padding: 24px 0px 40px;  
}

/* Profile About Tab CSS*/
#profile_tabs .card {
    border: 0;
    border-radius: 0;
    background-color: transparent;
}
#profile_tabs .card-header {
    background-color: transparent;
}
#profile_tabs ul.nav.nav-tabs {
    overflow: hidden;
    border-bottom: 2px solid #418FDE;
}
#profile_tabs .nav-link {
    color: #495057;
    background-color: #f5f5f5 !important;
    padding: 8px 50px 8px 20px !important;
    position: relative;
    border-radius: 0;
    border: 0;
    color: #418FDE;
    font-size: 16px;
    font-family: cb;
}
#profile_tabs .nav-link::before {
    content: "";
    width: 25px;
    height: 65px;
    background-color: #f5f5f5;
    position: absolute;
    top: -12px;
    left: -12px;
    transform: rotate(-30deg);
    border-left: 1px solid #cccccc;
}
#profile_tabs .nav-link.active {
    background-color: #418FDE !important;
    color: #fff;
}
#profile_tabs .nav-link.active::before {
    background-color: #418FDE !important;
}
#profile_tabs .nav-link:last-child::after {
    content: "";
    width: 25px;
    height: 65px;
    background-color: #fff;
    position: absolute;
    top: -12px;
    right: -12px;
    transform: rotate(-30deg);
    border-left:1px solid #d7d7d7;
}

#profile_tabs .card-body{
    padding: `16px 0px;
}
#about_tab_content h3,
#about_tab_content p{
    color: #418FDE ;
    font-size: 16px ;
    margin-bottom: 2px ;
}
#about_tab_content .col-sm-5 p{
    line-height: 26.7px;
}
#about_tab_content h3{
    font-size: 20px ;
    font-weight: bold;
}
#about_tab_content p.custom{
    line-height: 12px;
    margin-top: 9px;
}
#about_tab_content img {
    margin-right: 10px;
}
#about_tab_content .bold_text {
    font-family: cb;
}
#about_tab_content .bold_text p{
    font-size: 18px ;
}
#about_tab_content hr {
    border-top: 3px solid #418FDE !important;
    width: 100%;
    margin-left: 0px;
    margin-top: 5px !important;
}
#marked_tab_content .single-post h3 {
    font-size: 18px;
    line-height: 18px;
}
#marked_tab_content .single-post ul li a::before {
    left: 35px;
}
#marked_tab_content .single-post ul li a {
    padding: 0 0 0 35px;
}
#marked_tab_content .single-post li:first-child a::before {
    left: 25px;
}
#marked_tab_content .single-post li:first-child a.active::before {
    left: 20px;
}
.model_btn{
    text-decoration: none !important;
}
.modal-dialog {
    max-width: 600px !important;
}


/* Locker Room Main Page CSS */
#main_content {
    overflow: hidden;
    display: block;
    width: 100%;
}
.banner-image {
    position: relative;
}
.banner-upper-layer {
    top: 0;
    left: 0;
    background-color: rgba(0, 34, 68, 0.7) !important;
}
#profile_section4 .bg-blue-45,
.bg-blue-45 {
    border-bottom: 2px solid #418FDE;
    color: #ffffff;
    font-family: cb;
    line-height: 45px;
    font-size: 24px;
    padding: 0 20px;
    text-transform: uppercase;
    margin: 0;
    overflow: hidden;
    position: relative;
}
.bg-blue-45::before {
    content: "";
    background-color: #418FDE;
    position: absolute;
    width: 800px;
    height: 800px;
    top: -200px;
    left: -545px;
    transform: rotate(-55deg);
    z-index: -1;
}
.bg-blue-45-right{
    color:#418FDE;
    font-size: 24px;
}

/* Locker Item */
.single-locker {
    border-color: #024 !important;
    border-width: 2px !important;
    text-decoration: none !important;
    color: #418FDE;
    width: 98% !important;
}
a.single-locker:hover h4 {
    color: #56627b ;
}
a.single-locker:hover,
a.single-locker:hover .comment,
a.single-locker:hover .view-alert,
a.single-locker:hover .view-alert span {
    border-color: #56627b !important;
}
a.single-locker:hover div.remove_icon{
    border-color: #418FDE !important;
}
.single-lockerroom .remove_icon:hover{
    border-color: #56627b !important;
}
.single-lockerroom .remove_icon {
    position: absolute;
    top: 50%;
    right: -20px;
    padding: 0px 8px 3px;
    z-index: 333333;
    border-radius: 100%;
    border: 3px solid #418FDE;
    transform: translateY(-50%);
    cursor: pointer;
}
.view-alert span {
    height: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #418FDE;
}
.view-alert {
    border-left: 1px solid #024;
}
.view-alert span:first-child {
    border-bottom: 1px solid #418FDE;
}
.comment {
    position: relative;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #418FDE;
    font-family: cb;
    color: #418FDE;
}
.comment::before {
    content: url("images/icon/comment_icon.png");
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.single-locker h4 {
    font-size: 22px !important;
    color: #418FDE;
    font-family: cb !important;
    padding: 0 !important;
    margin: 0 !important;
}
.single-locker p {
    line-height: 20px;
    margin: 0;
    font-size: 14px;
    color: #bababa;
    font-style: italic;
}
.locker-filter {
    border-color: #418FDE !important;
    border-width: 2px !important;
}
.locker-filter h6 {
    font-family: cb;
    color: #418FDE;
    font-size: 20px;
}
.locker-filter a.list-group-item {
    border-color: #418FDE;
    border-radius: 0;
    background-color: transparent;
    color: #888888;
}
.poll-insights a {
    line-height: 14px;
    font-size: 12px;
    margin-bottom: 7px;
}
.poll-insights a h5{
    line-height: 14px;
    font-size: 16px;
}
.poll-insights a:hover {
    color: #888888 !important;
}
.poll-insights a h5 {
    line-height: 12px;
    font-size: 16px;
    color: #418FDE;
}
.poll-insights a:hover h5 {
    color: #56627b;
}
.locker-filter a.list-group-item:hover {
    border-color: #56627b !important;
    color: #56627b;
}
.locker-filter a.list-group-item span.badge {
    background-color: #418FDE;
}
.locker-filter a.list-group-item:hover span.badge {
    background-color: #56627b;
}
.sponsers h4 {
    font-family: cr;
    color: #aaaaaa;
    font-size: 12px;
}
.page-link {
    color: #418FDE;
    background-color: #e1e1e1;
    border: 1px solid #cccccc;
    font-family: cr;
}
.page-item.active .page-link,
.page-link:focus,
.page-link:active {
    z-index: 1;
    color: #fff;
    background-color: #56627b;
    border-color: #56627b;
}
.page-link:hover{
    z-index: 2;
    color: #fff;
    background-color: #418FDE;
    border-color: #418FDE;
}

.achieve{
    font-size: 22px;
    margin-bottom: 0px !important;
    color: #898989;
    padding: 0px 40px;
}
.achieve-blue{
    color: #418FDE;
}
.achieve-bar .progress-bar{
    background-color: #418FDE !important;
}
#achievement_tab_content select{
    color: #888888;
}

.trofi-style{
    border:1px solid #418FDE !important;
    border-radius: 3px !important;
}
.trofi-style .card-body{
    padding:20px 10px 0px !important;
}
.card.text-center.trofi-style h5 {
    font-size: 12px;
    font-family: cb;
    color: #888888;
    margin-bottom: 16px;
}
.trofi-style .card-footer {
    background-color: #418FDE;
    color: #fff;
    font-size: 20px;
    font-family: cb;
}
.trofi-style.low-opacity{
    opacity: .3;
}

.notifiction-style p{
    font-size: 22px;
    color: #888888;
    padding: 0px 10px;
    margin-bottom: 8px;
}
.lang-style p{
    font-size: 22px;
    color: #888888;
}
.lang-style span{
    font-size: 16px;
    color: #888888;
}
.lang-style select{
    color: #888888;
}


/* The switch - the box around the slider */
#setting_tab_content .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.poll-insights input {
    margin-right: 7px;
    position: relative;
    top: 1px;
}
.poll-insights h3 {
    background-color: #418FDE;
    color: #fff;
    padding: 10px 15px;
    font-size: 20px;
    font-family: cb;
    margin: 0;
    text-align: center;
}
.poll-insights label {
    margin: 0;
}
.poll-insights .radio {
    border-bottom: 1px solid #c9c9c9;
}
.poll-insights a.btn-secondary {
    font-size: 18px;
    font-family: cb;
    padding: 10px 15px;
}
.poll-insights a.btn-secondary:hover {
    color: #fff !important;
    opacity: 1;
}
.poll-insights a.btn-link {
    font-size: 16px;
    font-family: cb;
    margin-top: 3px;
    color: #418FDE;
}
.poll-insights a.btn-link:hover {
    color: #56627b !important;
    opacity: 1;
}

.margin-0{
    margin: 0 !important;
}
.insights-modal .modal-content {
    border: 4px solid #56627b;
}
.insights-modal .modal-body {
    padding: 0;
}
.posting-insights-header {
    background-color: #000;
}
.posting-insights-body {
    padding: 10px;
}
.posting-insights-body.padding-35-0 {
    padding: 35px 0;
}
.posting-insights-body.padding-20 {
    padding: 20px;
}
.posting-insights-body .close {
    position: absolute;
    right: 5px;
    top: 0;
}
.posting-insights-body > h2 {
    font-size: 30px;
    text-align: center;
    color: #418FDE;
    font-family: cb;
    padding: 0 50px;
    margin: 15px 0;
}
.buttons.p-3 {
    background-color: #f0f0f0;
    padding-bottom: 10px !important;
}
.close-btn-model {
    position: absolute;
    right: 7px;
    top: 0;
}
.posting-insights-body.padding-35-0 > h2{
    margin-bottom: 30px;
}
.posting-insights-body.padding-20 > h2{
    margin-bottom: 20px;
}
.posting-insights-body h3 {
    font-size: 24px;
    color: #418FDE;
    font-family: cb;
    line-height: normal;
}
.posting-insights-body h3 > span {
    font-family: cr;
}
.insights-topic {
    font-size: 14px;
    font-family: cb;
    font-weight: bolder;
    color: #1f275b;
    line-height: 1.8;
}
.insights-topic-details {
    font-size: 14px;
    color: #898989;
}
.posting-insights-body ul{
    list-style: none;
    margin: 0 0 5px;
    padding: 0;
}
.posting-insights-body ul > li {
    display: block;
    width: 100%;
    font-size: 15px;
    color: #000;
}
.subtitles li {
    color: #999 !important;
    padding: 4.2px 0;
}
.posting-insights-body .progress {
    border: 1px solid #666;
    margin: 10px 0;
    height: 20px;
}
.progress-bar {
    background-color: #418FDE;
}
.progress {
    background-color: #e8ecef;
}
.posting-insights-body ul > li > strong {
    color: #418FDE;
    font-weight: normal;
    font-family: cb;
    text-transform: uppercase;
    padding-right: 5px;
}
.posting-insights-body p.posting-insights-locaton {
    color: #418FDE;
    background: url(../images/location-icon.png) no-repeat center left;
    padding-left: 20px;
}
.interaction-count {
    width: 90%;
    height: 115px;
    margin-top: -55px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.interaction-count-inner {
    color: #fff;
    text-align: center;
}
.interaction-count-inner > strong {
    font-family: cb;
    font-weight: normal;
    font-size: 45px;
    line-height: 45px;
    display: block;
}
.posting-insights-body p {
    color: #9d9d9d;
}
.posting-insights-event-label {
    font-size: 15px;
    text-transform: uppercase;
    color: #1f275b;
    font-family: cb;
    display: block;
    text-align: center;
}
.posting-insights-event-count {
    font-size: 28px;
    color: #898989;
    display: block;
    text-align: center;
    line-height: 35px;
}
.posting-insights-event-column {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 2px solid #e1e1e1;
    border-left: 2px solid #e1e1e1;
}
.posting-insights-body label {
    font-size: 12px;
    margin: 0;
    color: #1f275b;
}
.posting-insights-body .progress {
    border-radius: 0;
    border: 1px solid #999db1;
}
.insights-modal-btn {
    padding: 30px 0;
    text-align: center;
    border-top: 2px solid #e1e1e1;
}
.insights-modal-btn > a {
    color: #fff;
    padding: 10px 30px;
    font-family: cb;
    line-height: normal;
    display: ;
    font-size: 14px;
}
.email-repoert-outer {
    padding: 25px;
}
.email-repoert-outer > h2 {
    font-size: 26px;
    font-family: cb;
    text-transform: uppercase;
    color: #024;
    margin-bottom: 15px;
    padding-bottom: 10px;
    position: relative;
}
.email-repoert-outer > h2::after {
    content: "";
    width: 78px;
    height: 4px;
    background-color: red;
    position: absolute;
    left: 0;
    bottom: 0;
}
.email-repoert-outer > table {
    width: 100%;
    margin-bottom: 40px;
}
.email-repoert-outer > table > tbody > tr > th {
    color: #418FDE;
    padding: 6px;
    border-bottom: 1px solid #eaeaea;
    font-weight: normal;
    font-family: cb;
}
.email-repoert-outer > table > tbody > tr > td {
    color: #9a9a9a;
    padding: 5px;
    border-bottom: 1px solid #eaeaea;
}
.email-repoert-outer > table > tbody a {
    color: #418FDE;
    text-decoration: underline;
    padding-left: 10px;
}
.email-insights-event-column {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 2px solid #e1e1e1;
}
.email-insights-event-count {
    font-size: 30px;
    font-family: cb;
    color: #002144;
    display: block;
    text-align: center;
}
.email-insights-event-label {
    font-size: 14px;
    color: #000;
    text-align: center;
    display: block;
}





/* Hide default HTML checkbox */
#setting_tab_content .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
#setting_tab_content .switch_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

#setting_tab_content .switch_slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

#setting_tab_content input:checked + .switch_slider {
  background-color: #56627b;
}

#setting_tab_content input:focus + .switch_slider {
  box-shadow: 0 0 1px #2196F3;
}

#setting_tab_content input:checked + .switch_slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
#setting_tab_content .switch_slider.round {
  border-radius: 34px;
}

#setting_tab_content .switch_slider.round:before {
  border-radius: 50%;
}


/* Fannectics Inner */
.view-alert span img {
    max-height: 20px;
}
.locker-sp h2{
    font-size: 32px;
    font-family: cb;
    color: #418FDE;
}
.locker-sp p{
    font-size: 16px;
    color: #bababa;
}
.question-box {
    border-color: #024 !important;
    border-width: 2px !important;
    color: #418FDE;
}
.question-box h6 {
    font-size: 18px;
    font-family: cb;
    color: #418FDE;
    margin: 0;
}
.question-box p {
    font-size: 13px;
    line-height: 16px;
    color: #bababa;
}
.actions a {
    align-items: center;
    justify-content: center;
    color: #418FDE;
    text-decoration: none;
}
.actions a.checked {   
    color: #56627b;
}
.actions span {
    align-items: center;
    justify-content: center;
    color: #aaaaaa;
}
.original-question {
    background-color: #f6f6f6;
    border-color: #cccccc;
}
.original-question h5 {
    font-family: cb;
    line-height: 15px;
    margin-bottom: 4px !important;
    color: #aaaaaa;
    font-size: 14px;
}
.original-question h5 span {
    color: #418FDE;
}
.add-question{
    background-color: #f6f6f6;
}
.add-question textarea {
    border-color: #56627b;
}
.add-question input {
    border-color: #56627b;
}
.smily-face {
    top: 5px;
    right: 5px;
    z-index: 11;
}
.add-question .btn.btn-primary {
    border-color: #56627b;
    background-color: #56627b;
}
.form-control:focus {
    color: #333333;
    background-color: #fff;
    border-color: #56627b !important;
    outline: 0;
    box-shadow: unset;
}
.load-more,
.load-more a{
    color: #bababa; 
}


/* Promotion Page CSS */
.banner-upper-layer h2 {
    font-size: 48px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    align-items: center;
    font-family: rbl;
}
.banner-upper-layer.d-flex{
    justify-content: center;
    align-items: center;
}
.search-form input[type="text"] {
    border: 2px solid #418FDE;
    min-height: 45px;
}
.search-form input[type="text"]:focus {
    border-color: #56627b;
}
.search-form .search-btn {
    position: absolute;
    right: 0;
    background-color: #56627b;
    height: 41px;
    width: 41px;
    margin: 2px 10px 2px 2px !important;
    background-image: url("images/icon/search2.png");
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1111;
}
.box-shadow-0 {
    box-shadow: unset;
}
.sort-by,
.select2-container--default .select2-selection--single {
    min-height: 45px;
    border: 2px solid #418FDE !important;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
    position: relative;
}
.select2-container--open .select2-selection--single {
    border-color: #56627b !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 7px 10px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px;
    right: 8px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #56627b;
}
.select2-results {
    box-shadow: 0px 2px 5px 1px rgba(0,0,0,0.3);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #418FDE transparent transparent transparent;
    border-width: 6px 6px 0 6px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #56627b transparent;
    border-width: 0 6px 6px 6px;
}
.select-styled{
    position: relative;
}
.select-styled::before {
    content: url("images/icon/down_arrow.png");
    width: 20px;
    position: absolute;
    height: 20px;
    z-index: 1111;
    right: 8px;
    top: 12px;
}
.single-promotion {
    border: 3px solid #418FDE !important;
}
.single-promotion div.image{
    position: relative;
    overflow: hidden;
}
.single-promotion span.timer {
    color: #418FDE;
    width: 100%;
    text-align: center;
    font-family: cb;
    font-size: 22px;
    line-height: 40px;
    margin: 0 auto 10px;
    display: inline-block;
}
.promotion-page-timer {
    text-align: center;
    margin: 15px auto;
}
.single-promotion h4 {
    font-size: 26px;
    font-family: cb;
    color: #418FDE;
    text-align: center;
}
.single-promotion p {
    line-height: 18px;
    font-size: 14px;
    color: #888888;
    margin-bottom: 10px;
}
.single-promotion button {
    width: 100%;
    border: 0;
    background-color: #56627b;
    color: #ffffff;
    padding: 10px 5px;
    border-radius: 5px;
    font-size: 18px;
    font-family: cb;
}
.single-promotion a {
    color: #418FDE;
    text-decoration: none;
}
.single-promotion.colu-8 span.timer {
    left: -290px;
    top: 45px;
}
.single-promotion.colu-8 p {
    margin-bottom: 10px;
}
.single-promotion.colu-8 h4 {
    margin-bottom: 2px;
}


/*Shop Start CSS*/
.shop_banner .item {
    position: relative;
}
.shop_banner .caption.text-uppercase {
    position: absolute;
    top: 12%;
    right: 5%;
    color: white;
}
.shop_banner .caption.text-uppercase h1 {
    font-size: 144px;
    font-family: cb;
    line-height: 90px;
}
.discount_text {
    font-size: 40px;
    font-weight: 100;
    margin-left: 10px;
}
.shop_banner .caption.text-uppercase p {
    font-size: 50px;
    font-family: cb;
    line-height: 42px;
    margin-top: -25px;
}
#shop_slider1 .item > a {
    color: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
}
/*Carousel Nav Buttons*/
#shop_slider1 .owl-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}
#shop_slider1 .owl-dot {
    background-color: #fff !important;
    height: 20px;
    left: 50%;
    width: 20px;
    border-radius: 100%;
    margin: 0px 5px;
    border: 1px solid #56627b;
    opacity: .7;
}
#shop_slider1 .owl-dot.active {
    background-color: #56627b !important;
    opacity: 1;
}
.order-details .table td button.remove_cart_item {
    line-height: 4px;
    padding: 4px 4px;
}
.order-details .table td button.remove_cart_item img {
    width: 8px;
}
.sidebar_cart tr {
    padding: 20px 0 !important;
}

#shop_slider1 a{
    padding-right: 47px !important;
    padding-left: 47px !important;
    margin: 10px 108px 0px 0px; 
    color: #fff;
    text-decoration: none;
}
a.shop_link {
    color: #fff;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    padding: 10px 60px;
    margin: 25px 0px 0px;
    font-size: 41px;
}
a.shop_link span {
    position: relative;
}
a.shop_link:hover{
    color: #fff;
}
a.shop_link::before {
    content: "";
    background-color: #56627b;
    position: absolute;
    width: 370px;
    height: 219px;
    top: -115px;
    left: -19px;
    transform: rotate(-63deg);
    z-index: 0;
}
.shop-tabs ul.nav.nav-tabs {
    border-bottom: 0px;
    justify-content: center;
}
.shop-tabs .nav-tabs .nav-item{
    position: relative;
}
.shop-tabs .nav-tabs .nav-item::after {
    content: "";
    width: 2px;
    height: 30px;
    background-color: #333;
    position: absolute;
    top: 13px;
    right: -1px;
}
.shop-tabs .nav-tabs .nav-item:last-child::after {
    width: 0px;
}
.shop-tabs a.nav-link {
    background-color: transparent;
    color: #418FDE !important;
    font-size: 24px;
    font-family: cb;
    padding: 8px 30px;
    border-radius: 0px;
}
.shop-tabs a.nav-link:hover, 
.shop-tabs a.nav-link:focus, 
.shop-tabs a.nav-link:active, 
.shop-tabs a.nav-link.active {
    background-color: #56627b !important;
    color: #fff !important;
    font-size: 24px;
    font-family: cb;
    padding: 8px 30px;
    border-radius: 5px;
    z-index: 3333;
    position: relative;
}

.shop_item {
    border: 1px solid #418FDE;
    border-radius: 0;
    text-align: center;
}
.shop-tabs .item {
    margin: 0px 10px;
}
.shop_item .card-header {
    background-color: transparent;
    padding: 0px;
    border-bottom: 0px;
    position: relative;
}
.shop_item hr {
    background-color: #418FDE;
    margin: 0px 10px !important;

}

.display_hover {
    position: absolute;
    background-color: rgba(0, 34, 68, 0.3);
    height: 100%;
    width: 100%;
    text-align: center;
    line-height: 225px;
    display: none;
}
.display_hover a{
    color: #fff;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    padding: 8px 35px 8px 30px;
    font-size: 20px;
    opacity: 1 !important;
    text-transform: uppercase;
}
.display_hover a span{
    position: relative;
}
.display_hover a:hover{
    color: #fff;
}
.display_hover a::before {
    content: "";
    background-color: #56627b;
    position: absolute;
    width: 270px;
    height: 120px;
    top: -56px;
    left: -46px;
    transform: rotate(-63deg);
    z-index: 0;
}
.shop_item:hover .display_hover{
    display: inherit;
}
.shop_item:hover{
    border-color:#56627b;
    cursor: pointer;
}
.shop_item:hover .on_sale{
    z-index: 1;
}
.shop_item h3{
    color: #418FDE;
    font-family: cb;
    font-size: 27px;
    text-transform: uppercase;
}
.shop_item p{
    color: #b7b7b7;
    font-size: 16px;
}
.shop_item .card-body {
    padding: 16px 32px !important;
}
.on_sale {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    overflow: hidden;
    padding: 5px 20px 5px 35px;
    font-size: 12px;
    z-index: 1;
}
.on_sale span{
    position: relative;
}
.on_sale::before {
    content: "";
    width: 160px;
    height: 130px;
    position: absolute;
    transform: rotate(40deg);
    background-color: rgba(30,46,79,0.75);
    top: -70px;
    left: 15px;
}

#shop_slider2 .owl-nav.disabled {
    display: inherit !important;
}
#shop_slider2 button.owl-prev span {
    position: absolute;
    top: 42%;
    left: -40px;
}
#shop_slider2 button.owl-prev span {
    border-radius: 100%;
    border: 2px solid #418FDE;
    padding: 0px 10px 3px !important;
    line-height: 32px;
    text-align: center;
    font-size: 30px;
    font-family: cb;
    width: 40px;
    height: 40px;

}
#shop_slider2 button.owl-next span {
    position: absolute;
    top: 42%;
    right: -40px;
}
#shop_slider2 button.owl-next span {
    border-radius: 100%;
    border: 2px solid #418FDE;
    padding: 0px 10px 3px !important;
    line-height: 32px;
    text-align: center;
    font-size: 30px;
    font-family: cb;
    width: 40px;
    height: 40px;

}

.extra_off{
    background-image: url("images/extra_bg.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    cursor: pointer;
    padding: 100px 0px !important;
    min-height: 545px;
}

section.row.extra_off h1 {
    font-size: 120px;
    color: #fff;
    font-family: cb;
    line-height: 50px;
    margin-left: 40px;
}
section.row.extra_off p {
    font-size: 48px;
    color: #fff;
    font-family: cb;
    margin-left: 40px;
}
section.row.extra_off .shop_link {
    margin: 0px;
}
.subscribe_now{
    background-color: #418FDE;
    padding: 30px 0px;
    color: #fff;
}
.subscribe_now h1{
    font-family: cb;
    font-size: 36px;
}
.subscribe_now p{
    font-size: 18px; 
}
.subscribe_now button.btn {
    background-color: #56627b;
    color: white !important;
    font-size: 20px;
    margin-left: 10px;
    padding: 6px 35px;
}
.subscribe_now input {
    font-size: 20px;
    color: #898989;
    padding:6px 30px;
}
.subscribe_now input:active,
.subscribe_now input:focus,
.subscribe_now button:active,
.subscribe_now button:focus{
    outline: unset !important;
    border:unset !important;
    box-shadow: unset !important;
}


/*Shop Main CSS*/

.shop_main_tab ul.nav.nav-tabs a{
    padding:8px 22px !important;
}
.single_product .card-body{
    padding:10px 10px !important;
}
.single_product{
    margin-bottom: 25px;
}
.single_product h3{
    text-align: left;
    margin-bottom: 0px;
    font-size: 16px;
}
.single_product p{
    text-align: left;
    text-decoration: line-through;
    font-size: 14px;
    margin-bottom: 0px;
}
.slider_price {
    border-bottom: unset !important; 
    color: #ffffff;
    font-family: cr !important;
    line-height: 22px;
    font-size: 18px;
    padding: 0px 10px;
    text-transform: uppercase;
    margin: 0;
    overflow: hidden;
    position: relative;
}
.slider_price span{
    position: relative;
}
.add-wishlist {
    z-index: 99999999;
    background-image: url('images/icon/dil.png');
    background-repeat: no-repeat;
    background-position: center center;
    width: 25px;
    height: 25px;
}
.add-wishlist.added {
    background-image: url('images/icon/wishlist_added.png');
}
.slider_price a{
    position: relative;
    z-index: 111111;
    display: inline-block;
}
.slider_price::before{
    content: "";
    background-color: #56627b;
    position: absolute;
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    transform: rotate(-55deg);
    z-index: 0;
}

.product_detail {
    min-height: 59px;
}


@media (min-width:1683px){
.product_detail.unset {
	min-height: auto;
}
}
.product_filter h1 {
    color: #418FDE;
    font-size: 24px;
    font-family: cb;
}

.product_filter  .toggle_btn {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    color: #888888;
    font-family: cb;
    font-size: 18px;
}
.product_filter button:active,
.product_filter button:focus,
.product_filter button:hover{
    outline: unset;
    box-shadow: unset;
}
.cat_toggle_data .agreement{
    font-size: 16px;
    color: #888888;
}
span.product_quantity {
    min-width: 30px !important;
    min-height: 30px !important;
    background-color: #ccc;
    border-radius: 100px;
    text-align: center;
    padding: 0;
    font-size: 12px;
    max-width: 30px;
    display: inline-block;
    max-height: 30px;
    line-height: 30px;
    margin: 14px 0px 0px 20px;
}
.price_data p{
    color: #418FDE !important;
    font-size: 18px;
}
.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5;
    height: 6px;
    width: 96%;
    margin: 0px auto;
}
.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
    background-color: #56627b;
}
span.ui-slider-handle {
    background-color: #ffffff !important;
    border-width: 2px !important;
    border-color: #418FDE !important;
    border-radius: 30px !important;
    padding: 11px !important;
    top: -11px !important;
    margin-left:-12px !important;
}
span.ui-slider-handle:hover{
    cursor: grab;
}

span.color_item {
    width: 40px;
    height: 40px;
    border: 1px solid #b6b6b6;
    border-radius: 25px;
    margin-right: 15px;
    margin-bottom: 15px;
}
.color1{
    background-color: #ffffff;
}
.color2{
    background-color: #fa645c;
}
.color3{
    background-color: #f78bc6;
}
.color4{
    background-color: #b2b2b2;
}
.color5{
    background-color: #ab8259;
}
.color6{
    background-color: #000000;
}
.color7{
    background-color: #418FDE;
}
.color8{
    background-color: #56627b;
}

.size_data a.btn {
    color: #222222;
    border: 1px solid #707070;
    font-size: 20px;
    margin-right: 10px;
    padding: 10px;
    border-radius: 0px;
    width: 50px;
    text-align: center;
    line-height: 28px;
    height: 50px;
    background-color: #e1e1e1;
}
.size_data a.btn.active{
    background-color: #ffffff;
}
.size_data a.btn:hover{
    background-color: #ffffff;
}


/*Shop WishList CSS*/
.wishlist_data{
    border-bottom:1px solid #418FDE;
}
.wishlist > div > section:last-child{
    border-bottom: 0;
}
.align-item-center {
    align-items: center;
}
.wishlist_data img.mr-4 {
    border: 1px solid #b7b7b7;
    padding: 9px 18px;
    max-width: 200px;
}
.wishlist_data h4{
    font-size: 32px;
    color:#418FDE;
    font-family: cb;
    margin-bottom: 0px;
}
.wishlist_data .item_no{
    font-size: 12px;
    color:#888888;
    margin-bottom:8px;
}
.wishlist_data .w_item_detail{
    font-size: 16px;
    color:#888888;
    line-height: 16px;
}
.wishlist_data .discount{
    font-size: 18px;
    color:#888888;
    margin-bottom: 0px;
    text-decoration: underline;
}
.wishlist_data h1{
    font-size: 30px;
    color:#56627b;
}
.remove_wishlist_item {
    background-color: #418FDE;
    border-radius: 100%;
    padding: 2px 10px 4px;
    cursor: pointer;
    transition: .3s all;
    margin-right: 15px;
}
.add_to_cart{
    background-color: #418FDE;
    border:1px solid #418FDE;
    border-radius:0px;
    color: #ffffff;
    font-family: cb;
    font-size: 24px;
    padding: 4px 35px;
    transition: .3s all;
}
.remove_wishlist_item:hover, 
.add_to_cart:hover{
    color: #ffffff;
    background-color: #001326;
}


/*Shop Thanku CSS*/

.thanks_logo p{
    color: #a0a0a0;
    font-size: 22px;
}
.thanks_for_sale .bg-blue-45.head::before {
    content: "";
    background-color: #418FDE;
    position: absolute;
    width: 800px;
    height: 800px;
    top: -200px;
    left: -452px;
    transform: rotate(-55deg);
    z-index: -1;
}
.thanku_slider .card-header{
    padding:10px !important;
}
.thanku_slider .card-body{
    padding:0px !important;
}
.thanku_slider .owl-nav.disabled {
    display: inherit !important;
}
.thanku_slider button.owl-prev span {
    position: absolute;
    top: 42%;
    left: -4px;
}
.thanku_slider button.owl-prev span {
    border-radius: 100%;
    border: 3px solid #418FDE;
    padding: 0px 10px 3px !important;
    line-height: 28px;
    text-align: center;
    font-size: 35px;
    font-family: cb;
    width: 40px;
    height: 40px;

}
.thanku_slider button.owl-next span {
    position: absolute;
    top: 42%;
    right: -4px;
}
.thanku_slider button.owl-next span {
    border-radius: 100%;
    border: 3px solid #418FDE;
    padding: 0px 10px 3px !important;
    line-height: 28px;
    text-align: center;
    font-size: 35px;
    font-family: cb;
    width: 40px;
    height: 40px;
}
.thanku_slider .item {
    padding: 0px 10px;
}
#thanku_slider h3{
    font-size: 22px;
}

#thanku_slider .subscribe_now{
    background-color: #418FDE;
    padding: 48px;
    color: #fff;
}


/*Shop Bag CSS*/
.table thead{
    color:#418FDE;
    font-size: 15px;
    font-weight: thin;
}
.border_color_top td{
    border-color: #418FDE !important; 
}
.table .media img {
    border: 1px solid #b7b7b7;
    padding: 15px 20px;
    max-width: 100px;
}
.table .media h4{
    font-size: 15px;
    color: #646464;
    font-family: cb;
}
.table .media p{
    font-size: 12px;
    color: #b7b7b7;
    margin-bottom: 2px;
}
.td_style{
    width: 30px;
    text-align: center;
    vertical-align: middle !important;
}
.td_style button {
    margin-bottom: 0px !important;
}
.td_style span {
    font-size: 18px;
    font-family: cb;
    color: #333333;
}
.first_td{
    width: 60%;
}
/*Checkout order detail css*/
.order-details .table td, .table th {
    padding: 15px 4px 5px !important;
}
.order-details .table .media img {
    padding: 10px;
    max-width: 70px;
}
.order-details .remove_wishlist_item {
    margin-right: 0px;
}
.order-details .table .media h4 {
    font-size: 12px;
}
.order-details .quantity input {
    width: 80px;
}
.order-details .quantity-button {
    width: 30px;
}


#card_slider .owl-nav.disabled {
    display: inherit !important;
}
#card_slider button.owl-prev span {
    position: absolute;
    top: 42%;
    left: -65px;
}
#card_slider button.owl-prev span {
    border-radius: 100%;
    border: 3px solid #418FDE;
    padding: 0px 10px 3px !important;
    line-height: 28px;
    text-align: center;
    font-size: 35px;
    font-family: cb;
    width: 40px;
    height: 40px;

}
.card_slider .bg-blue-45{
    margin:25px 5px;
}
.card_slider .bg-blue-45::before {
    content: "";
    background-color: #418FDE;
    position: absolute;
    width: 800px;
    height: 800px;
    top: -200px;
    left: -380px;
    transform: rotate(-55deg);
    z-index: -1;
}
.card_slider .product_detail h3{
    font-size: 22px;
}
#card_slider .item {
    padding: 0px 5px;
}
#card_slider button.owl-next span {
    position: absolute;
    top: 42%;
    right: -65px;
}
#card_slider button.owl-next span {
    border-radius: 100%;
    border: 3px solid #418FDE;
    padding: 0px 10px 3px !important;
    line-height: 28px;
    text-align: center;
    font-size: 35px;
    font-family: cb;
    width: 40px;
    height: 40px;
}
#card_slider .add_to_cart{
    background-color: #56627b;
    border-color: #56627b;
    margin:10px 0px;
    padding:3px 50px 5px;
}


/*quantity*/
.quantity {
  position: relative;
}

.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button
{
  -webkit-appearance: none;
  margin: 0;
}

.quantity input[type=number]
{
  -moz-appearance: textfield;
}

.quantity input {
  width: 100px;
  height: 42px;
  line-height: 1.65;
  float: left;
  display: block;
  padding: 0;
  margin: 0;
  padding-left: 20px;
  border: 1px solid #eee;
}

.table .input-group-text{
    background-color: #56627b;
    font-family: cb;
    font-size: 14px;
    margin-left: 5px;
    border-color: #56627b;
    color: #ffffff;
}

.text-upper{
    text-transform: uppercase;
}

.quantity input:focus {
  outline: 0;
}

.quantity-nav {
  float: left;
  position: relative;
  height: 40px;
}

.quantity-button {
  position: relative;
  cursor: pointer;
  border-left: 1px solid #eee;
  width: 38px;
  background-color: #d6d6d6;
  text-align: center;
  color: #333;
  font-size: 13px;
  font-family: "Trebuchet MS", Helvetica, sans-serif !important;
  line-height: 1.7;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.quantity-button.quantity-up {
  position: absolute;
  height: 50%;
  top: 0;
  border-bottom: 1px solid #eee;
  line-height: 18px;
}

.quantity-button.quantity-down {
    position: absolute;
    bottom: -1px;
    height: 50%;
    line-height: 18px;
}
.total_checkout{
    color: #adadad;
    font-size: 19px;
}
td.checkout span {
    color: #418FDE;
    font-size: 26px;
    font-family: cb;
}
td.checkout > div > span:last-child {
    width: 125px;
    text-align: left;
    padding-left: .75rem;
}
td.checkout a {
    background-color: #56627b;
    border-radius: 0px;
    padding: 10px 0;
    font-size: 23px;
    font-family: cb;
    color: #fff !important;
    margin-top: 35px;
    width: 100%;
}


/*Shop Product CSS*/
.product_slider_onclick h1{
    color: #418FDE;
    font-size: 42px;
    font-family: cb;
}
.product_slider_onclick h3{
    color: #56627b;
    font-size: 18px;
    font-family: cb;
}
.p_slider span p {
    color: #fff;
    font-size: 15px;
    text-decoration: line-through;
    text-align: right;
    position: absolute;
    right: 15px;
    top: 1px;
}
.wishlist_data .sale_price,
.p_slider span {
    color: #ffffff;
    font-size: 32px;
    font-family: cb;
    padding: 10px 15px 10px 45px;
    background-image: url("images/bg_price.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    position: absolute;
    top: 3px;
    right: 18px;
    z-index: 111;
}
.price_btn .sale_price {
    position: relative;
    right: 0;
}
.price_btn {
    align-items: end;
}
.price_btn button {
    margin-top: 60px;
}
.product_slider_onclick h2{
    color: #418FDE;
    font-size: 24px;
    font-family: cb;
}
.breadcrumbs {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.breadcrumbs li {
    display: inline-block;
    margin-right: 30px;
    color: #418FDE;
    font-size: 18px;
    font-family: cb;
    position: relative;
}
.breadcrumbs li::after {
    content: ">";
    position: absolute;
    top: 6px;
    right: -20px;
    font-size: 12px;
}  
.breadcrumbs li:last-child::after {
    display: none;
}
.breadcrumbs li a{
    color: #418FDE;
    font-size: 18px;
    font-family: cb;
}
.breadcrumbs li a:hover{
    color: #56627b;
}
.card_btn {
    background-color: #56627b;
    padding: 10px 0;
    color: #ffffff;
    font-size: 21px;
    border-radius: 0px;
    margin-right: 10px;
    flex: 1 1 auto;
    text-transform: uppercase;
    font-family: cb;
}
.wish_btn {
    background-color: #418FDE;
    padding: 10px 0;
    color: #ffffff;
    font-size: 21px;
    border-radius: 0px;
    flex: 1 1 auto;
    text-transform: uppercase;
    font-family: cb;
}
.back-link a{
    color: #418FDE;
}
.back-link a:hover{
    color: #418FDE;
}
.wish_btn.added {
    background-color: #c0c0c0 !important;
    color: #333 !important;
}
.wish_btn.added:hover {
    background-color: #c0c0c0 !important;
    color: #333 !important;
}
.wish_btn.added:focus {
    box-shadow: unset !important;
}
.product_slider_onclick .owl-thumbs {
    padding: 0px 0px 0px 100px;
}
.product_slider_onclick button.owl-thumb-item{
    background-color: transparent;
    border: 1px solid #b7b7b7;
}
.product_slider_onclick button.owl-thumb-item img {
    width: 100px;
}
.product_slider_onclick .owl-stage-outer {
    border: 3px solid #418FDE;
}
.item_style img {
    width: 440px !important;
    margin: 0 auto;
}
.product_slider_onclick .size_data a.btn {
    color: #418FDE;
    background-color: #ffffff;
}
.product_slider_onclick .size_data a.btn.active {
    color: #ffffff;
    background-color: #56627b;
}
.product_slider_onclick .size_data a.btn:hover {
    color: #ffffff;
    background-color: #56627b;
}
.product_des{
    font-size: 24px;
    color:#707070;
}
.product_des ul{
    padding: 0px 0px 0px 20px;
}
.product_des h2,
.product_like h2{
    font-size: 36px;
    font-family: cb;
    color:#418FDE;
}
.product_like button.owl-prev span {
    position: absolute;
    top: 42%;
    left: -50px;
}
.product_like button.owl-next span {
    position: absolute;
    top: 42%;
    right: -50px;
}

/*Video Chat CSS*/
.video_head h1{
    color: #418FDE;
    font-size: 48px;
    font-family: cb;
    margin-bottom: 0px;
}
.video_head p img {
    margin-right: 10px;
    margin-top: -3px;
}

.video_head p {
    color: #d4d4d4;
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 10px;
}
.video_sidebar h2{
    color: #418FDE;
    font-size: 22px;
    font-family: cb;
}
.single_video {
    position: relative;
}
.single_video p {
    position: absolute;
    bottom: 0px;
    color: #ffffff;
    font-size: 16px;
    left: 0px;
    width: 100%;
    margin: 0;
    padding: 10px 10px;
    background-color: rgba(0,0,0,0.6);
}
.single_video a:hover button.play_control {
    display: inherit;
}
.single_video button.play_control {
    padding: 15px 3px;
    text-align: center;
    top: 45%;
    display: none;
}
.single_video button.play_control img {
    width: 30%;
    margin: 0 auto;
}
.right_time {
    bottom: 0px;
    font-size: 18px;
    right: 0;
    display: flex;
    align-items: center;
}
.right_time img {
    margin: 0px 5px 0px 0px;
}
.single_post {
    padding: 16px 0px;
    border: unset;
}

.match_timer {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    margin: 0px;
    position: absolute;
    width: 100%;
    padding: 20px 0px;
    font-family: cr !important;
    font-size: 54px;
    font-family: cb;
}
.match_timer p{
    font-size: 54px;
    font-family: cb;
    margin-bottom: 0px !important;
    position: relative;
}
.match_timer h5 {
    font-size: 28px;
    font-family: cb;
    margin-right: 30px;
    margin-bottom: 0px;
    padding: 25px 0px;
}
button.play_control {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 100%;
    border: 0px;
    padding: 25px 27px;
}
.play_control.small {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 19px 21px;
}
.play_control.small img {
    width: 25px;
}
button.play_control:active,
button.play_control:focus{
    outline: unset;
    box-shadow: unset;
}
.days span, .hours span, .mints span, .secs span{
    text-align: center;
    font-size: 12px;
    font-family: cb;
    position: absolute;
    bottom: 5px;
    padding: 0px 0px 0px 16px;
}
.days p {
    font-family: cr !important;
}
.share_link span{
    color: #418FDE;
    font-size: 18px;
    font-family: cb;
    margin-right: 44px;
}
.share_link a.twite {
    background-color: #55acee;
    padding: 10px 16px;
    font-size: 16px;
    font-family: cb;
    color: #ffffff;
    border-radius: 26px;
}
.share_link a.face {
    background-color: #3b5998;
    padding: 10px 18px;
    font-size: 16px;
    font-family: cb;
    color: #ffffff;
    border-radius: 26px;
}
.share_link a.link {
    background-color: #212736;
    border-radius: 26px;
    padding: 10px 18px;
    font-size: 16px;
    color: #ffffff;
    font-family: cb;
}
.share_link li {
    margin: 0px !important;
    padding: 0px 5px 0px 0px;
}
.share_link .copy_link a{
    background-color: #56627b;
    color: #ffffff;
    font-size: 16px;
    border-radius: 26px;
    padding: 10px 18px;
    font-family: cb;
}
.share_link .copy_link {
    background-color: transparent;
    margin-left: -34px !important;
}
.share_link a:hover{
    text-decoration: none;
}

.question_outer textarea {
    background-color: #f5f9ff;
    border-color: #56627b;
    color: #8a8b8c;
    font-size: 16px;
}
.question_outer button:hover{
    color: #ffffff;
}
.question_outer button {
    background-color: #56627b;
    color: #ffffff;
    font-size: 18px;
    font-family: cb;
    padding: 8px 40px;
}
.answer_outer h6{
    color: #418FDE;
    font-size: 16px;
    font-family: cb;
}
.answer_outer input {
    background-color: #f5f9ff;
    border-color: #418FDE;
}
.answer_outer button {
    background-color: #418FDE;
    color: #ffffff;
    font-size: 18px;
    font-family: cb;
    text-transform: uppercase;
    padding: 5px 42px;
    border: 1px solid #418FDE;
    margin-left: 10px;
}
.answer_outer .reply {
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 10px 0px 10px 20px;
}
.answer_outer p{
    color: #aaaaaa;
    font-size: 16px;
}
.load_more a {
    color: #aaaaaa !important;
    font-size: 16px;
    text-decoration: none !important;
}
.reply a {
    color: #418FDE;
    text-decoration: none !important;
}
.answer_outer a {
    color: #418FDE;
    text-decoration: underline;
}
a.go_back {
    background-color: #418FDE;
    color: #fff;
    font-size: 23px;
    font-family: cb;
    margin-top: 76px;
    padding: 10px 48px !important;
}
a.go_back:hover{
    text-decoration: none;
}
.cart_data td{
    padding-right:16px !important;
    padding-left: 16px !important;
}
.cart_data td.checkout button {
    background-color: #56627b;
    border-radius: 0px;
    padding: 10px 114px;
    font-size: 23px;
    font-family: cb;
    color: #fff !important;
    margin-top: 35px;
}
.shopping_cart .cart_data::before,
.notification_setting .notification_data::before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: -11px;
    background-color: #fcfdff;
    right: 65px;
    transform: rotate(45deg);
    border-left:1px solid #ccc;
    border-top:1px solid #ccc;
}
.notification_setting .notification_data::before{
    background-color: #f0f0f0;
}
.notification_data .drop_head h2 {
    margin: 0;
    padding: 10px 0;
    font-family: cb;
    color: #418FDE;
    display: flex;
    align-items: center;
}
.notification_data .drop_head h2 a {
    color: #56627b;
    border-color: #56627b;
    font-size: 12px;
    padding: 3px 15px !important;
    margin-left: 15px;
    margin-top: 3px;
}
/*.shopping_cart .cart_data{
    width: 700px;
    top: 0px !important;
    left: -300px !important;
    padding:0px;
    position: fixed;
}*/
.btns {
    text-align: right;
}
.btns a {
    border-radius: 0;
    padding: 8px 35px !important;
    font-size: 18px;
    font-family: cr;
    text-transform: uppercase;
}
.table {
    margin-bottom: 0 !important;
}
.cart_data .first_td{
    width: 60% !important;
}
thead.text-center th {
    border-bottom: 1px solid #418FDE !important;
}
.cart_table thead tr th:last-child, .cart_table tbody tr td:last-child {
    width: 7% !important;
    text-align: left;
    min-width: 125px;
}
.cart_table tfoot tr td:last-child {
    padding-right: 0;
}

td.checkout > div > span:last-child {
    width: 125px;
    text-align: left;
    padding-left: .75rem;
}
.shopping_cart .cart_data,
.notification_setting .notification_data {
    width: 700px;
    top: 0px !important;
    left: -300px !important;
    padding:0px;
    transform: translate3d(-301px, 54px, 0px) !important;
}
}
.dropdown-item-text.drop_head {
    background-color: #fcfdff;
    color: #418FDE;
    padding: 10px 20px;
    border-bottom: 1px solid #dae9ff;
}
.dropdown-item-text.drop_head a {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
    padding: 0px 20px !important;
    margin-left: 30px;
    font-family: cb;
}
.dropdown-item-text.drop_head a:hover{
    text-decoration: none;
    color: #418FDE;
    border-color: #418FDE;
}
.notification_data a.dropdown-item {
    color: #418FDE;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
    padding: 10px 25px !important;
    position: relative;
}
.notification_data a.dropdown-item.new::before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: #56627b;
    position: absolute;
    top: 48%;
    left: 10px;
    border-radius: 50px;
}
.notification_data a.dropdown-item.new:hover::before {
    background-color: #ffffff;
}
.notification_data a.dropdown-item:hover{
    background-color: #418FDE;
    color: #fff;

}
.drop_footer {
    background-color: #56627b;
}
.drop_footer a{
    color: #fff;
    font-size: 15px;
    font-family: cb;
}
.drop_footer .all_notify {
    color: #fff;
    font-size: 20px;
    font-family: cb;
}
.drop_footer a:hover{
    text-decoration: none;
    color: #418FDE;

}


/* Promotion Insight Single Page CSS */
.banner-image {
    overflow: hidden;
}
.single-image {
    width: 100%;
    position: relative;
}
.upper-timer {
    text-align: center;
    background-color: rgba(0, 34, 68, 0.9);
    color: #ffffff;
    min-height: 200px;
    justify-content: flex-end;
    padding-bottom: 10px;
    transform: rotate(30deg);
    right: -210px;
    top: -60px;
    width: 600px !important;
}
.upper-timer .title {
    font-family: cb;
    font-style: italic;
    text-transform: uppercase;
    font-size: 20px;
}
.time-stamp {
    font-size: 38px;
    line-height: 38px;
    font-family: rl;
}
.time-stamp b{
    font-family: rb;
}
.stamp-bottom {
    justify-content: center;
    list-style-type: none;
    line-height: 8px;
    padding: 0;
    margin-bottom: 5px;
}
.stamp-bottom li {
    flex-basis: 54px;
    font-size: 11px;
}
.get-this-offer-btn {
    text-align: center;
    position: relative;
}
.margin-min-2 {
    margin-top: -24px;
}
.get-this-offer {
    background-color: #56627b;
    border: 0;
    border-radius: 0;
    padding: 10px 50px;
    text-transform: uppercase;
    font-family: cb;
    font-size: 18px;
}
.single-promotion-page h2 {
    font-size: 42px;
    color: #418FDE;
    font-family: cb;
}
.single-promotion-page p,
.single-sponsor-page p {
    font-size: 18px;
    color: #888;
    font-family: cr;
    line-height: 24px;
}
.single-promotion-page ul,
.single-sponsor-page ul {
    padding-left: 15px;
    color: #888888;
}
.single-promotion-page ul li,
.single-sponsor-page ul li {
    font-size: 18px;
    padding-left: 10px;
}
.btn-primary{
    background-color: #56627b !important;
    border: 0 !important;
}
.btn-primary.focus, .btn-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(254,80,0,.5) !important;
}
.btn-primary.hover, .btn-primary:hover{
    background-color: #363e4f !important;
}


/* Sponsor Page CSS */
.btn-secondary{
    background-color: #418FDE !important;
    border: 0 !important;
}
.btn-secondary.focus, .btn-secondary:focus {
    box-shadow: 0 0 0 .2rem rgba(0,34,68,.5) !important;
}
.btn-secondary.hover, .btn-secondary:hover{
    background-color: #00172d !important;
}
.sponsor-btn a {
    flex: 1 0 49% !important;
    font-family: cb;
    text-transform: uppercase;
    font-size: 18px;
    padding: 7px 5px;
    border-radius: 5px;
}
.sponsor-btn a.btn-secondary {
    margin-left: 2%;
}
.sponsors div.border {
    border-color: #418FDE !important;
}
.upper-title {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    padding: 25px 25px 20px;
    font-family: cb;
}
.header.position-relative{
    cursor: pointer;
}
.upper-title h2 {
    font-size: 36px;
    text-transform: uppercase;
}


/* Sponsor Single Page CSS */
.sponsor-banner {
    justify-content: center;
    background-color: #000000;
    min-height: 350px;
    align-items: center;
}
.okp-link {
    justify-content: center;
    margin-top: -33px;
}
.okp-link a {
    background-color: #fafafa !important;
    padding: 9px 60px;
    font-size: 30px;
    color: #418FDE !important;
    font-family: cb;
    text-transform: uppercase;
    box-shadow: 2px 2px 10px 2px rgba(0,0,0,0.3);
    border-radius: 0px;
    border: 2px solid #418FDE !important;
}
.okp-link a:hover {
    background-color: #fafafa !important;
}
.okp-link a:focus {
    box-shadow: 2px 2px 10px 2px rgba(0,0,0,0.3) !important;
}
.visit-website-btn a {
    padding: 10px 100px;
    font-family: cb;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 15px;
    border-radius: 10px;
}
.bg-blue-45.bg-60::before{
    left: -470px;
}
.bg-blue-45.bg-40::before{
    left: -570px;
}
.single_video a {
    display: block;
    padding: 0;
    position: relative;
    clear: both;
}
.single_video a > img {
    width: 100%;
    padding: 0;
    margin: 0;
}


/* Ticket Page CSS */
.match-timer {
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-image: url("images/ticket_banner_bg.png");
    width: 45%;
    min-height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
}
.match-detail h3 {
    font-size: 28px;
    font-family: rbl;
    text-transform: uppercase;
}
.color-gold {
    color: #fecb00;
}
.ticket-banner-upper-layer {
    justify-content: center;
    text-align: center;
    color: #ffffff;
}
.match-detail {
    transform: translateY(-40px);
}
.match-between {
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
.match-between figure {
    margin: 0;
    padding: 0;
    flex-basis: 44%;
}
.match-between > div {
    flex-basis: 12%;
}
.match-between figure.team1 {
    text-align: right;
    align-items: center;
    justify-content: flex-end;
}
.match-between figure.team2 h1,
.match-between figure.team1 h1 {
    font-size: 36px;
    font-family: rbl;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}
.match-between figure.team2 img,
.match-between figure.team1 img {
    max-height: 80px;
    margin: 0 15px;
}
.match-between figure.team2 {
    text-align: left;
    align-items: center;
}
.two-lines-on {
    font-family: rb;
    text-transform: uppercase;
    font-size: 18px;
    position: relative;
}
.two-lines-on::before {
    content: "";
    width: 100px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    left: -110px;
    top: 47%;
}
.two-lines-on::after {
    content: "";
    width: 100px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    right: -110px;
    top: 47%;
}
.match-between > div > span {
    font-family: cb;
    font-size: 16px;
    line-height: 14px;
}
.match-between > div > span.time {
    font-family: cb;
    font-size: 56px;
    line-height: 56px;
}
.match-between > div > span.match-no {
    text-transform: uppercase;
}
.time-remaining {
    justify-content: center;
    align-items: center;
}
.time-remaining .title {
    font-size: 28px;
    font-family: cb;
}
.btn-default{
    background-color: #cccccc !important;
    border: 0 !important;
    color: #333333 !important;
}
.btn-default.focus, .btn-default:focus {
    box-shadow: 0 0 0 .2rem rgba(204,204,204,.5) !important;
}
.btn-default.hover, .btn-default:hover{
    background-color: #afafaf !important;
}
.ticket-btn a {
    padding: 10px 10px;
    border-radius: 0;
    font-size: 18px;
    font-family: rb;
    text-transform: uppercase;
    flex-basis: 33.33333%;
    -webkit-flex-basis: 33.33333%;
}
.time-remaining .time-stamp {
    font-size: 54px;
}
.time-remaining .time-stamp .stamp-bottom {
    line-height: 25px;
    width: 105%;
    transform: translateX(-9px);
    margin-bottom: 0;
}
.time-remaining .time-stamp .stamp-bottom li {
    flex-basis: 25% !important;
    font-size: 12px;
}
.matches h1 {
    font-size: 42px;
    font-family: rbl;
    text-transform: uppercase;
    color: #418FDE;
    border-bottom: 2px solid #56627b;
    padding-left: 10px;
    padding-bottom: 5px;
}
.matches h3 {
    font-family: cb;
    font-size: 32px;
    color: #418FDE;
    text-transform: uppercase;
    position: relative;
    line-height: 50px;
    font-weight: bold;
}
.matches h3::after {
    content: "";
    width: 80px;
    height: 5px;
    background-color: #56627b;
    position: absolute;
    bottom: 0;
    left: 0;
}
.single-match {
    align-items: center;
    border-bottom: 1px solid #ccc;
}
.single-match div.date span {
    line-height: 25px;
}
.single-match span.mdate{
    font-size: 20px;
    font-family: cb;
    text-transform: uppercase;
    color: #418FDE;
}
.single-match span.mtime{
    font-size: 26px;
    font-weight: bold;
    font-family: cb;
    text-transform: uppercase;
    color: #56627b;
}
.single-match div {
    min-height: 80px;
    justify-content: center;
}
.single-match div.date {
    flex-basis: 16.66666%;
    -webkit-flex-basis: 16.66666%;
    border-right: 1px solid #ccc;
    padding: 15px 0;
}
.single-match div.team-vs {
    flex-basis: 45.00001%;
    -webkit-flex-basis: 45.00001%;
    align-content: center;
    justify-content: center;
    border-right: 1px solid #ccc;
}
.single-match div.team-vs > div {
    flex: 1 1 48% !important;
}
.single-match div.team-vs div.team1 {
    justify-content: flex-end;
}
.single-match div.team-vs div.team2 {
    justify-content: start;
}
.single-match div.match-btn {
    flex-basis: 38.33333%;
    -webkit-flex-basis: 38.33333%;
}
div.team{
    justify-content: center;
    align-items: center;
}
div.team1 h4 {
    text-align: right;
    padding-left: 10px;
}
div.team2 h4 {
    text-align: left;
    padding-right: 10px;
}
div.team h4 {
    color: #56627b;
    font-size: 18px;
    font-family: rbl;
    text-transform: uppercase;
    margin: 0;
}
.single-match .vs {
    align-self: center;
    font-size: 16px;
    font-family: cb;
}
div.team img {
    margin: 0 10px;
    max-height: 56px;
}
.match-btn {
    align-items: baseline;
    justify-content: end !important;
}
.match-btn a {
    border-radius: 0;
    padding: 8px 5px;
    display: block;
    font-size: 14px;
    font-family: rb;
    text-transform: uppercase;
}
.single-btn {
    width: 27%;
    margin-left: 2%;
    text-align: center;
}
.single-btn span {
    font-size: 10px;
    font-family: cr;
    text-transform: uppercase;
    color: #888888;
    align-items: start !important;
    justify-content: center !important;
    display: flex;
    margin-top: 3px;
}
.single-btn span b {
    font-size: 24px;
    font-family: cb;
    font-weight: bold;
    line-height: 20px;
    margin-left: 5px;
}
.view-more-btn{
    text-align: center;
}
.view-more-btn button{
    margin: 0 auto;
    border-radius: 0;
    padding: 5px 50px;
    font-size: 24px;
    font-family: cb;
    text-transform: uppercase;
}



/* Buy Ticket Steps CSS */
.steps-bar {
    background-color: #418FDE;
    color: #ffffff;
}
.steps-bar ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex: 1 0 auto;
    -webkit-flex: 1 0 auto;
    overflow: hidden;
}
.steps-bar ul li {
    flex: 1 0 33.33333%;
    -webkit-flex: 1 0 33.33333%;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    font-family: cb;
    padding: 12px 10px;
    position: relative;
}
.steps-bar ul li.active {
    background-color: #56627b;
}
.steps-bar ul li.active:hover {
    background-color: #363e4f !important;
}
.steps-bar ul li a{
    color: #fff;
    display: block;
    text-decoration: none;
}
.steps-bar ul li::before {
    content: "";
    width: 54px;
    height: 54px;
    background-color: #418FDE;
    right: -10px;
    top: 0px;
    z-index: 1;
    position: absolute;
    transform: rotate(45deg);
    border-top: 8px solid #fff;
    border-right: 8px solid #fff;
}
.steps-bar ul li::after {
    content: "";
    width: 54px;
    height: 60px;
    top: 0;
    left: -10px;
    position: absolute;
    background-color: #418FDE;
}
.steps-bar ul li:last-child::before,
.steps-bar ul li:first-child::after {
    display: none;
}
.steps-bar ul li.active::before,
.steps-bar ul li.active::after {
    background-color: #56627b;
}
.steps-bar ul li.active:hover::before,
.steps-bar ul li.active:hover::after {
    background-color: #363e4f !important;
}
.accordion-heading h2 {
    margin: 0;
    color: #024;
    font-family: cb;
    font-size: 28px;
    text-transform: uppercase;
    padding: 12px 10px 10px;
    border-bottom: 2px solid #56627b;
    line-height: 36px;
}
#accordion{
    position: relative;
}
.single-section {
    border-radius: 0;
}
.single-section .card-header{
    padding: 0;
    background-color: #ffffff !important;
}
.single-section button {
    text-align: left;
    padding: 12px 20px 12px 60px;
    align-items: center;
    text-decoration: none !important;
    position: relative;
}
.single-section button::before {
    content: "";
    width: 19px;
    height: 19px;
    border-radius: 100%;
    border: 2px solid #ffffff;
    position: absolute;
    left: 15px;
    top: 35%;
    box-shadow: 0 0 0 2px #56627b;
    background-color: #56627b
}
.single-section button.collapsed::before {
    background-color: #ffffff;
    box-shadow: 0 0 0 2px #cccccc;
}
.single-section button div.price {
    text-align: right;
}
.single-section button div.price span{
    display: block;
}
.single-section button > span {
    color: #56627b;
    font-family: cb;
    font-size: 20px;
    text-transform: uppercase;
}
.single-section button.collapsed > span {
    color: #888888;
}
.single-section button div.price span:first-child {
    font-size: 26px;
    font-family: cb;
    color: #418FDE;
    line-height: 26px;
}
.single-section button div.price span:last-child {
    font-size: 10px;
    font-family: cr;
    color: #888888;
    line-height: 10px;
}
.single-section .card-body {
    background-color: #f0f0f0;
}
.seat-info h6 {
    color: #888888;
    font-size: 16px;
    font-family: cr;
}
.seat-info h3 {
    color: #418FDE;
    font-size: 48px;
    font-family: cb;
    line-height: 30px;
}
.seat-info h4 {
    color: #418FDE;
    font-size: 36px;
    font-family: cb;
    line-height: 20px;
}
.seat-info > div:last-child {
    text-align: right;
}
.seat-info input{
    width: 80px;
    border-radius: 0;
}
.continue-btn input{
    border-radius: 0;
    font-family: cb;
    text-transform: uppercase;
    font-size: 20px;
}
.match-head h1 {
    font-size: 32px;
    font-family: rbl;
    text-align: center;
    color: #418FDE;
    margin-bottom: 5px;
}
.match-head h1 span {
    color: #56627b;
    font-size: 24px;
}
.match-head p {
    text-align: center;
    color: #888888;
    font-family: cb;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0;
    line-height: 18px;
}
.bg-gray {
    background-color: #f0f0f0;
}
.stadium-svg{
    justify-content: center;
    text-align: center;
    align-items: center;
    margin: 0;
    display: flex;
}
.stadium-svg svg {
    width: 520px;
}
.st0{display:none;}
.st1{display:inline;}
.st2{fill:none;stroke:#000000;stroke-width:5;stroke-miterlimit:10;}
.st3{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
.st4{fill:none;stroke:#000000;stroke-width:2;stroke-miterlimit:10;}
.st5{fill:#BFBFBF;}
.st6{fill:#333333;}
.st7{fill:#868686;}
.st8{fill:#D2D2D2;}
.st9{fill:#666666;}
.st10{fill:#A5A5A5;}
.st11{fill:#919191;}
.st12{fill:#9B9B9B;}
.st13{fill:#BEBEBE;}
.st14{fill:#CACACA;}
.st5.seat-hover{
    fill:#418FDE;
    filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
    -webkit-filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
}
.st6.seat-hover{
    fill:#418FDE;
    filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
    -webkit-filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
}
.st7.seat-hover{
    fill:#418FDE;
    filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
    -webkit-filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
}
.st8.seat-hover{
    fill:#418FDE;
    filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
    -webkit-filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
}
.st9.seat-hover{
    fill:#418FDE;
    filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
    -webkit-filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
}
.st10.seat-hover{
    fill:#418FDE;
    filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
    -webkit-filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
}
.st11.seat-hover{
    fill:#418FDE;
    filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
    -webkit-filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
}

.st5.seat-active{
    fill:#56627b;
    filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
    -webkit-filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
}
.st6.seat-active{
    fill:#56627b;
    filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
    -webkit-filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
}
.st7.seat-active{
    fill:#56627b;
    filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
    -webkit-filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
}
.st8.seat-active{
    fill:#56627b;
    filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
    -webkit-filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
}
.st9.seat-active{
    fill:#56627b;
    filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
    -webkit-filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
}
.st10.seat-active{
    fill:#56627b;
    filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
    -webkit-filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
}
.st11.seat-active{
    fill:#56627b;
    filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
    -webkit-filter: drop-shadow( 0px 0px 10px rgba(0, 0, 0, .7));
}



/* Ticket Step 2 form CSS */
.payment-menu,
.fields{
    padding-right: 15px;
    padding-left: 15px;
}
.step2-form .form-check {
    padding-left: 2.25rem;
}
.blue {
    color: #418FDE;
}
.step2-form label {
    font-family: cb;
}
.step2-form .form-check label {
    font-family: cr;
    color: #888888;
    margin-bottom: 0px;
    line-height: 23px;
    font-size: 14px;
}
.step2-form button {
    font-family: cb;
    border-radius: 0;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
}
.step2-form a.btn-link {
    font-family: cr;
    color: #888888;
    font-size: 16px;
}
.sidebar {
    box-shadow: 0 0 8px 0 #aaa;
}
.order-details h3 {
    font-size: 24px;
    font-family: cb;
    color: #418FDE;
}
.order-details ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.order-details ul li {
    font-size: 16px;
    font-family: cr;
    padding: 10px 0;
    color: #418FDE;
    border-bottom: 1px solid #dddddd;
    display: flex;
}
.order-details ul li span:nth-child(1) {
    flex: 0 0 85%;
}
.order-details ul li span:nth-child(2) {
    flex: 0 0 5%;
    justify-content: flex-end;
    text-align: right;
}
.order-details ul li span:nth-child(3) {
    flex: 0 0 10%;
    justify-content: flex-end;
    text-align: right;
}
.order-details ul li div b{
    font-size: 18px;
    padding-left: 3px;
}
.promo-code input{
    width: 75% !important;
    border-radius: 0;
}
.promo-code button{
    width: 22% !important;
    border-radius: 0;
    margin-left: 3% !important;
}
.order-details h5 {
    font-size: 16px;
    font-family: cb;
    color: #418FDE;
    line-height: 36px;
    display: flex;
    align-items: baseline;
}
.order-details h5 b {
    font-size: 22px;
}
#profile_tabs.orange-tabs .nav-link.active {
    background-color: #56627b !important;
}
#profile_tabs.orange-tabs .nav-link.active::before {
    background-color: #56627b !important;
}
#profile_tabs.orange-tabs ul.nav.nav-tabs {
    border-bottom: 2px solid #56627b;
}
.step3 h6 {
    font-family: cb;
    color: #333333;
    margin: 0;
    flex-basis: 40%;
    -webkit-flex-basis: 40%;
}
.step3 .col-md-6 {
    display: flex;
    align-items: center;
    margin-bottom: 10px; 
}
.step3 p {
    margin: 0;
    flex-basis: 60%;
    -webkit-flex-basis: 60%;
    font-size: 14px;
    color: #888888;
    font-family: cr;
}
.match .date span {
    font-family: cb;
    text-align: center;
    font-size: 20px;
    color: #418FDE;
    line-height: 24px;
}
.match .date span.mtime {
    font-size: 24px;
    color: #56627b;
}
.match .date {
    flex-basis: 25%;
    -webkit-flex-basis: 25%;
    border-right: 1px solid #cccccc;
    padding: 15px 0;
}
.match .team-vs {
    align-items: center;
    flex-basis: 60%;
    -webkit-flex-basis: 60%;
    justify-content: center;
}
.sidebar.order-details a.btn {
    width: 100%;
    border-radius: 0;
    font-family: cb;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 10px;
    padding: 10px 0;
}







/*
I've used nested span elements for creating an animation of square turn and creating an arrow animation. But if you know other a solution please email me
melnik909@ya.ru
*/

/*
=====
LEVEL 1. CORE STYLES
=====
*/

.toggle{
  --uiToggleSize: var(--toggleSize, 20px);
  --uiToggleIndent: var(--toggleIndent, .4em);
  --uiToggleBorderWidth: var(--toggleBorderWidth, 2px);
  --uiToggleColor: var(--toggleColor, #000);
  --uiUncheckColor: var(--uncheckColor, #fff);
  --uiToggleDisabledColor: var(--toggleDisabledColor, #868e96);
  --uiToggleBgColor: var(--toggleBgColor, #fff);
  --uiToggleArrowWidth: var(--toggleArrowWidth, 2px);
  --uiToggleArrowColor: var(--toggleArrowColor, #fff);

  display: inline-block;
  position: relative;
}

.toggle__input{
  position: absolute;
  left: -99999px;
}

.toggle__label{
  display: inline-flex;
  cursor: pointer;
  min-height: var(--uiToggleSize);
  padding-left: calc(var(--uiToggleSize) + var(--uiToggleIndent));
}

.toggle__label:before, .toggle__label:after{
  content: "";
  box-sizing: border-box;  
  width: 1em;
  height: 1em;
  font-size: var(--uiToggleSize);

  position: absolute;
  left: 0;
  top: 0;
}

.toggle__label:before{
  border: var(--uiToggleBorderWidth) solid var(--uiUncheckColor);
  z-index: 2;
}

.toggle__input:disabled ~ .toggle__label:before{
  border-color: var(--uiToggleDisabledColor);
}

.toggle__input:not(:disabled) ~ .toggle__label:after{
  background-color: var(--uiToggleColor);
  opacity: 0;
}

.toggle__input:not(:disabled):checked ~ .toggle__label:after{
  opacity: 1;
}

.toggle__text{
  margin-top: auto;
  margin-bottom: auto;
}

/*
The arrow size and position depends from sizes of square because I needed an arrow correct positioning from the top left corner of the element toggle
*/

.toggle__text:before{
  content: "";
  box-sizing: border-box;
  width: 0;
  height: 0;
  font-size: var(--uiToggleSize);

  border-left-width: 0;
  border-bottom-width: 0;
  border-left-style: solid;
  border-bottom-style: solid;
  border-color: var(--uiToggleArrowColor);

  position: absolute;
  top: .5428em;
  left: .2em;
  z-index: 3;

  transform-origin: left top;
  transform: rotate(-40deg) skew(10deg);
}

.toggle__input:not(:disabled):checked ~ .toggle__label .toggle__text:before{
  width: .5em;
  height: .25em;
  border-left-width: var(--uiToggleArrowWidth);
  border-bottom-width: var(--uiToggleArrowWidth);
  will-change: width, height;
  transition: width .1s ease-out .2s, height .2s ease-out;
}

/*
=====
LEVEL 2. PRESENTATION STYLES
=====
*/

/* 
The demo skin
*/

.toggle__label:before, .toggle__label:after{
  border-radius: 2px;
}

/* 
The animation of switching states
*/

.toggle__input:not(:disabled) ~ .toggle__label:before,
.toggle__input:not(:disabled) ~ .toggle__label:after{
  opacity: 1;
  transform-origin: center center;
  will-change: transform;
  transition: transform .2s ease-out;
}

.toggle__input:not(:disabled) ~ .toggle__label:before{
  transform: rotateY(0deg);
  transition-delay: .2s;
}

.toggle__input:not(:disabled) ~ .toggle__label:after{
  transform: rotateY(90deg);
}

.toggle__input:not(:disabled):checked ~ .toggle__label:before{
  transform: rotateY(-90deg);
  transition-delay: 0s;
}

.toggle__input:not(:disabled):checked ~ .toggle__label:after{
  transform: rotateY(0deg);
  transition-delay: .2s;
}

.toggle__text:before{
  opacity: 0;
}

.toggle__input:not(:disabled):checked ~ .toggle__label .toggle__text:before{
  opacity: 1;
  transition: opacity .1s ease-out .3s, width .1s ease-out .5s, height .2s ease-out .3s;
}

/*
=====
LEVEL 3. SETTINGS
=====
*/

.toggle{
  --toggleColor: #56627b;
  --uncheckColor: #ffffff;
  --toggleBgColor: #56627b;
  --toggleSize: 20px;
}

.page__toggle{
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.page__toggle:nth-child(n+2){
  margin-top: 50px;
}


/* 
Patreon
*/

.patreon{
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
 
  text-align: center;
  background-color: #fffdee;
  
  position: absolute;
  top: 0;
  left: 0;
}

.patreon__container{
  padding-left: 10px;
  padding-right: 10px;
}

.patreon__link{
  text-decoration: underline;
  color: #ff4242;
}

