/* Citrus Addon Front-end Styles */

/* Style for option premium in select */
.selectpicker_chapter select option.premium {
    color: #d63638;
}

/* Style for the display of the select when the premium option is selected */
.selectpicker_chapter select.premium-selected {
    color: #d63638;
}

/* Add lock icon after the display of the select when the premium option is selected */
.selectpicker_chapter select.premium-selected::after {
    content: " 🔒";
    margin-left: 5px;
    display: inline-block;
}

/* If the select uses custom dropdown (like bootstrap-select) */
.selectpicker_chapter .bootstrap-select.premium-selected .filter-option::after,
.selectpicker_chapter .bootstrap-select.premium-selected .dropdown-toggle::after {
    content: " 🔒";
    margin-left: 5px;
    display: inline-block;
}

.section_adult, .site-header .c-sub-header-nav .c-sub-nav_wrap .section_adult{
    border: none;
    padding: 16px 0 0 0;
    margin: 0;
}
/* From Uiverse.io by Bodyhc */ 
.checkbox-wrapper .switch {
    display: none;
  }
  
  .checkbox-wrapper .switch + label {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #78768d;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 15px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .checkbox-wrapper .switch + label::before,
    .checkbox-wrapper .switch + label::after {
    content: '';
    display: block;
  }
  
  .checkbox-wrapper .switch + label::before {
    background-color: #05012c;
    border-radius: 500px;
    height: 15px;
    -webkit-transition: background-color 0.125s ease-out;
    transition: background-color 0.125s ease-out;
    width: 25px;
  }
  
  .checkbox-wrapper .switch + label::after {
    background-color: #fff;
    border-radius: 13px;
    box-shadow: 0 3px 1px 0 rgba(37, 34, 71, 0.05), 0 2px 2px 0 rgba(37, 34, 71, 0.1), 0 3px 3px 0 rgba(37, 34, 71, 0.05);
    height: 13px;
    left: 1px;
    position: absolute;
    top: 1px;
    -webkit-transition: -webkit-transform 0.125s ease-out;
    transition: -webkit-transform 0.125s ease-out;
    transition: transform 0.125s ease-out;
    transition: transform 0.125s ease-out, -webkit-transform 0.125s ease-out;
    width: 13px;
  }
  
  .checkbox-wrapper .switch + label .switch-x-text {
    display: block;
    margin-right: .3em;
  }
  
  .checkbox-wrapper .switch + label .switch-x-toggletext {
    display: block;
    font-weight: bold;
    height: 15px;
    overflow: hidden;
    position: relative;
    width: 25px;
  }
  
  .checkbox-wrapper .switch + label .switch-x-unchecked,
    .checkbox-wrapper .switch + label .switch-x-checked {
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: opacity 0.125s ease-out, -webkit-transform 0.125s ease-out;
    transition: opacity 0.125s ease-out, -webkit-transform 0.125s ease-out;
    transition: transform 0.125s ease-out, opacity 0.125s ease-out;
    transition: transform 0.125s ease-out, opacity 0.125s ease-out, -webkit-transform 0.125s ease-out;
  }
  
  .checkbox-wrapper .switch + label .switch-x-unchecked {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    left: -32px;
  }
  
  .checkbox-wrapper .switch + label .switch-x-checked {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  
  .checkbox-wrapper .switch + label .switch-x-hiddenlabel {
    position: absolute;
    visibility: hidden;
  }
  
  .checkbox-wrapper .switch:checked + label::before {
    background-color: #ffb500;
  }
  
  .checkbox-wrapper .switch:checked + label::after {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  
  .checkbox-wrapper .switch:checked + label .switch-x-unchecked {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  
  .checkbox-wrapper .switch:checked + label .switch-x-checked {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  
#loop-content .adult-mode .item-thumb:after{
    content: ' 18+';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* blur */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: none;
    user-select: none;
}

.adult-content-censored{
    background: #eaeaea;
    padding: 20px;
    width: 400px;
    margin: 20px auto;
    text-align: center;
}

.btn-adult-confirm, .btn-adult-deny{
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    margin: 0 10px;
    border: none;
    text-transform: uppercase;
}

.btn-adult-confirm{
    background: #d63638;
}

.btn-adult-deny{
    background: #000;
}
