/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 ._cl_field_group{
     margin-top: 10px;
     margin-bottom: 25px;
     color: #000;
 }
 ._cl_field_group input,
 ._cl_field_group select,
 ._cl_field_group small,
 ._cl_field_group label,
 ._cl_field_group textarea {
     color: #000;
     resize: none;
 }
 ._cl_field_group:after {
     content: '';
     clear: both;
     display: block;
     width: 100%;
 }
._cl_field_group select {
    padding: .6180469716em;
    background-color: #f2f2f2;
    color: #43454b;
    outline: 0;
    border: 0;
    width: 100%;
    box-sizing: border-box;
    font-weight: 400;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .125);
}

._cl_field_group input{
        width: 100%;    
}

.hidden{
    display: none!important;
}

.error select, .error input{
    border: 1px solid red!important;
}
.error>label{
    color: red;
}
.error>label:after{
    content: ' * Required';
    font-size: small;
    color: red;
    font-style: italic;
}
.cl_required_error{
    color: red;
    font-weight: bold;
}

    .cl_options .swatch-container{
        display: flex;
        flex-wrap: wrap; 
   }
   .cl_options .swatch-container input{
        display: none; 
   }
   .cl_options .swatch-container .swatch{
       margin: 3px 6px;
       position: relative;
       color: #2196F3;
   }
   
   .cl_options .swatch-container label {
       box-sizing: border-box;
       box-shadow: 0 0 2px 1px rgba(0,0,0,.2);
       border: 3px solid #fff;
       color: #2196F3;
       /* For IE */
       display: inline-block;
       /* For IE */
   }
   
   .cl_options .swatch-container label{
       width: 46px;
       height: 46px;
   }
  
   .cl_options .tooltip{
       transition: all .4s cubic-bezier(0.230, 1.000, 0.320, 1.000);
       transform: rotateX(90deg) translateX(-50%) translateY(0%);
       position: absolute;
       bottom: 100%;
       left: 50%;
       background-color:  #000;
       color: #fff;
       padding: 10px 20px;
       border-radius: 5px;
       opacity: 0;
       transform-origin: 50% 100%;
       font-size:  small;
       letter-spacing: 0.1em;
       width: auto;
   }
   .cl_options .tooltip:after{
       content: '';
       display: block;
       width: 0px;
       height: 0px;
       border-width: 4px;
       border-style: solid;
       border-color:#000 transparent transparent transparent;
       position: absolute;
       top: 100%;
       left: 50%;
       margin-left: -4px;
   }
   
   .cl_options .swatch-container label:hover~.tooltip {
       transform: rotateX(0deg) translateX(-50%) translateY(-10px);
       opacity: .8;
       visibility: visible;
   }
   
   .cl_options .swatch-container input:checked~label{
        border-color: currentColor;
        margin: 0px;
   }
  
   .cl_options .swatch-container label img{
       max-width: unset!important;
       max-height: unset!important;
       width: 40px;
       height: 40px;
       display: block;
       /* for IE */
       pointer-events: none;
       /* for IE */
   }
   .cl_upload-button-group{
       display: flex;
   }
   .cl_remove-image{
       margin-left: 3px;
       padding: 5px 8px;
       color: #fff;
       background-color: tomato;
   }
 