.stencil-options_container {
    padding: 30px 0px 10px 0px;
}

.stencil-options_trigger-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.stencil-options_trigger-box .trigger-box_title {
    margin: 0px;
}


.stencil-options_options-box {
    margin: 10px 0px;
    display : none;
}
.product.attribute.description.special-virtual-product .options-box_alert-container,
.stencil-options_options-box .options-box_alert-container {
    margin-bottom: 40px;
    background: #F9EA95;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    border-radius: 12px;
}
.product.attribute.description.special-virtual-product .options-box_alert-container .options-box_alert-img,
.stencil-options_options-box .options-box_alert-img {
    height: 50px;
    width: 50px;
    margin: 0px 15px;
}
.product.attribute.description.special-virtual-product .options-box_alert-container .options-box_alert-text,
.stencil-options_options-box .options-box_alert-text {
    margin: 0px;
    width: 85%;
    padding: 0px 10px;
    color: #1A1A1A;
}

/* margin bottom for all fields */
.stencil-options_options-box div.control,
.stencil-options_options-box div.field  {
    margin-bottom: 20px;
}

.stencil-options_options-box div.field  {
    font-weight: 500;
    color: #1A1A1A;
}

/*
    Slider css
*/
.cd-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.cd-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cd-slider{
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.cd-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}


input:checked + .cd-slider{
    background-color: #ea4f24;
}

input:focus + .cd-slider{
    box-shadow: 0 0 1px #ea4f24;
}

input:checked + .cd-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.cd-slider.cd-slider__round {
    border-radius: 34px;
}

.cd-slider.cd-slider__round:before  {
    border-radius: 50%;
}


