* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    position: relative;
    height: 100vh;
    overflow-y: scroll;
    -webkit-font-smoothing: antialiased;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 18px;
}

ul {
    margin: 0;
    padding: 0;
}

a {
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    outline: 0;
    text-decoration: none;
    background-color: transparent;
    transition: color .15s ease-in-out;
}

a:focus, a:hover, a:active {
    outline: 0;
    text-decoration: none;
}

a:hover {
    color: #43adbb;
}


h1 {
    font-size: 20px;
    font-weight: 800;
}

h2 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

button, 
html [type=button] {
    -webkit-appearance: button;
    appearance: button;
}

b {
    font-weight: bold;
}

.hr_ruler {
    margin: 5px 0px;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #43adbb;
}

.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #43adbb;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.main_container {
    width: 100%;
    position: relative;
    padding: 10px;
    background-color: #f5f5f5;
    height: 100%;
}

.inner_top {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.addin_name {
    flex-grow: 1;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content:flex-start;
}

.company_logo {
    width: 30%;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;

}

.logo_holder {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
}

.logo_holder img {
    display: block;
    margin: 0 auto;
    width: 40px;
    height: 40px;
}

.addin_name_holder {
    display: inline-block;
    padding: 8px 5px; 
}


.inner_middle {
    width: 100%;
    padding: 25px 0px;
}


/* pills */

.nav-tabs {
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    border: none;
}
.nav-tabs .nav-link{
    border: none;
    border-radius: 0;
    transition: color .2s ease-out;
}
.tabs-dark .nav-link {
    color: #fff;
}
.tabs-light .nav-link {
    color: rgba(0,0,0,.5);
}
.tabs-dark .nav-link:not(.active):hover {
    color: #aeb0b3;
}
.tabs-light .nav-link:not(.active):hover {
    color: #495057;
}

.nav-pills .nav-link{
    border-radius: 2px;
    color: #495057;
    transition: color .2s ease-out, box-shadow .2s;
}

.nav-pills .nav-link:hover{
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    
}

.nav-pills .nav-item {
    margin: 0 5px;
}

.nav-pills.pills-dark .nav-link.active {
    background-color: #343a40!important;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}

.nav-pills.pills-dark .nav-link:not(.active):hover {
    color: #1d1e22;
}

.tabs-marker .nav-link {
    position: relative;
}

.tabs-marker .nav-link.active .marker {
    height: 30px;
    width: 30px;
    left: 50%;
    bottom: -30px;
    transform: translatex(-50%);
    position: absolute;
    overflow: hidden;
}
.tabs-marker .nav-link.active .marker:after {
    content: "";
    height: 15px;
    width: 15px;
    top: -8px;
    left: 50%;
    transform: rotate(45deg) translatex(-50%);
    transform-origin: left;
    background-color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    position: absolute;
}

.nav-link {
    display: block;
    padding: 0.4rem 0.7rem !important;
}


.pane_component {
    padding: 20px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    min-height: 600px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    flex-direction: column;
}

.sub_pane_component {
    /* display: flex; */
    /* display: -webkit-flex; */
    /* align-items: center; */
    /* flex-direction: column; */
    width: 100%;
}

.component_item {
    display: inline-block;
    margin: 30px 10px;
    font-size: 16px;
}



/* button */

.component_item_button {
    cursor: pointer;
    text-transform: none;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    background-color: #005f69 !important;
    color: #ffffff;
    border-color: #005f69;
}

.component_item_button:hover {
    background-color: #0a7b87 !important;
    border-color: #0a7b87 !important;
}

.main_login_sign_up,
.main_logout_sign_up {
    font-size: 18px;
}

.esign_panel {
    width: 100%;
    min-width:200px;
    margin: 20px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.esign_panel_with_toggle {
    width: 100%;
    min-width:200px;
    margin: 20px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}


input.esign_input {
    padding:8px 4px;
    width:100%;
    max-width: 400px;
    outline:none;
    border:1px solid #bbb;
    border-radius:0px;
    display:inline-block;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
            box-sizing:border-box;
    -webkit-transition:0.2s ease all;
    -moz-transition:0.2s ease all;
        -ms-transition:0.2s ease all;
        -o-transition:0.2s ease all;
            transition:0.2s ease all;
}


button.element_submit {
    padding:8px 20px;
    width:100%;
    max-width: 400px;
    background:#1abc9c;
    border:none;
    color:white;
    cursor:pointer;
    display:inline-block;
    -webkit-transition:0.2s ease all;
    -moz-transition:0.2s ease all;
        -ms-transition:0.2s ease all;
        -o-transition:0.2s ease all;
            transition:0.2s ease all;
}

button.element_submit:hover {
    opacity:0.8;
}

button.element_submit:active {
    opacity:0.4;
}


textarea.esign_textarea {
    padding:8px 4px;
    width:100%;
    max-width: 400px;
    outline:none;
    border:1px solid #bbb;
    min-height: 154px;
    resize: none;
    overflow: hidden;
    margin: 0px;
}

input[type=text].esign_input:focus,
textarea.esign_textarea:focus {
    border-color:cornflowerblue;
}

.d-none {
    display: none;
}

.document_name_or_title {
    width: 100%;
    max-width: 400px;
    overflow-wrap: break-word;
}

.profile-user-img {
    margin: 0 auto;
    width: 100px;
    padding: 3px;
    border: 3px solid #d2d6de;
  }
  .profile-username {
    font-size: 21px;
    margin-top: 5px;
  }

  
.img-circle {
    border-radius: 50%;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.box-body {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 10px;
}

.box {
    position: relative;
    border-radius: 3px;
    background: #ffffff;
    border-top: 3px solid #d2d6de;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    }

.box.box-primary {
    border-top-color: #0a7b87;
}


.was-validated input:valid,
.was-validated select:valid,
.was-validated textarea:valid {
  border-color: #28a745;
}

.was-validated input:invalid,
.was-validated select:invalid,
.was-validated textarea:invalid  {
  border-color: #dc3545;
}



p.tip {
    font-style: italic;
    margin: -5px auto 5px;
    padding: 5px 0 5px 30px;
    font-size: 14px;
    background: url(/assets/images_tip.png) left center no-repeat;
}

.spinner_correction {
    padding-left: 18px;
    display: block;
}


.loading_cover {
    position: fixed;
    top:0px;
    left:0px;
    bottom:0px;
    right:0px;
    width: 100%;
    height: 100vh;
    z-index: 200;
    background-color: #ffffff;
    opacity: 1;
    visibility: visible;
    transition: visibility 0s linear 0s, opacity 0.25s 0s;
  }



  .hide-loading {
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s;
  }
  
  .spinner {
    /* margin: 100px auto 0; */
    width: 70px;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .spinner > div {
    width: 18px;
    height: 18px;
    background-color: #333333;
  
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  }
  
  .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
  }
  
  .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
  }
  
  @-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bouncedelay {
    0%, 80%, 100% { 
      -webkit-transform: scale(0);
      transform: scale(0);
    } 40% { 
      -webkit-transform: scale(1.0);
      transform: scale(1.0);
    }
  }
  
  

  .toggle {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 27px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-radius: 27px;
    cursor: pointer;
  }

  .toggle input {
    display: none;
  }

  .toggle .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 27px;
    background-color: #cccccc;
    transition: all 0.4s ease-in-out;
  }

  .toggle .slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 27px;
    height: 27px;
    border-radius: 13.5px;
    background-color: #ffffff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease-in-out;
  }

  .toggle input:checked+.slider {
    background-color: #005f69;
  }

  .toggle input:checked+.slider::before {
    transform: translateX(53px);
  }

  .toggle .labels {
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 12px;
    font-family: sans-serif;
    transition: all 0.4s ease-in-out;
  }

  .toggle .labels::after {
    content: attr(data-off);
    position: absolute;
    right: 5px;
    top: -3px;
    color: #4d4d4d;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease-in-out;
  }

  .toggle .labels::before {
    content: attr(data-on);
    position: absolute;
    left: 5px;
    top: -3px;
    color: #ffffff;
    opacity: 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease-in-out;
  }

  .toggle input:checked~.labels::after {
    opacity: 0;
  }

  .toggle input:checked~.labels::before {
    opacity: 1;
  }

  .is_self_sign {
    font-weight: 800;
  }



/* default css styles */
.profile-card {
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin: 50px auto 0;
    padding: 100px;
    width: 700px;
}

.profile-card header img {
    float: left;
    height: 90px;
    width: 90px;
    margin-right: 30px;
}

.profile-card header h1{
    font-size: 20px;
    font-weight: bold;
    padding-top: 6px;
    text-transform: uppercase;
}


.profile-card header h2{
    font-size: 20px;
    font-weight: normal;
    line-height: 0;
}

.short_description_text {
    margin: 5px 0px;
    font-size: 15px;
}

.profile-bio {
    margin-bottom: 50px;
    margin-top: 80px;
}

.profile-bio p {
    font-size: 17px;
    font-weight: lighter;
    line-height: 1.5;
    text-align: left;
}

.profile-social-links {
    border-top: 1px solid #efefef;
    list-style: outside none none;
    padding-top: 30px;
    text-align: center;
    margin-left: -40px;
}

.profile-social-links li {
    display: inline-block;
}


.profile-social-links img {
    height: 30px;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul.unordered_list > li::before {
  content: "\25A0";
  color: #078494;
  font-weight: bold;
  display: inline-block;
  width: 1em; 
  margin-left: -1em;
  font-size: 1.2em;
}

ul.unordered_list {
  margin-bottom: 40px;
  margin-top: 20px;
}

ul.unordered_list > li {
   padding: 4px 30px !important;
}



/* error container */

/* error container */

.error_container {
    min-width: 280px;
    max-width: 350px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
  
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  
  .error_container .positive,
  .error_container .negative {
    width: 100%;
    margin-bottom: 20px;
    position:relative;
    overflow: hidden;
    height: 100%;
    min-height:90px;
  
    -webkit-border-radius: 6px;
       -moz-border-radius: 6px;
            border-radius: 6px;
    -webkit-transition: all 0.6s ease;
       -moz-transition: all 0.6s ease;
        -ms-transition: all 0.6s ease;
         -o-transition: all 0.6s ease;
            transition: all 0.6s ease;
  }
  
  .error_container .negative {
    background-color: #f4f5f9;
    -webkit-box-shadow: 5px 5px 15px #ff7473;
       -moz-box-shadow: 5px 5px 15px #ff7473;
            box-shadow: 5px 5px 15px #ff7473;
  }
  
  .error_container .positive {
    background-color: #f4f5f9;
    -webkit-box-shadow: 5px 5px 15px #8FBC8F;
       -moz-box-shadow: 5px 5px 15px #8FBC8F;
            box-shadow: 5px 5px 15px #8FBC8F;
  }
  
  
  
  .error_container .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    font-size: 50px;
    text-align: center;
    text-shadow: 1px 1px rgba(0,0,0,0.12);
    color: #fff;
    position: absolute;
    margin-right: 4px;
    top:0;
    bottom:0;
    left:0;
  }
  
  .error_container .message_container {
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  
  .error_container .negative > .icon {
    background-color: #f1404b;
    border: 1px solid #f1404b;
    background-image: -webkit-radial-gradient(ellipse farthest-corner at center bottom, #ff7473 0%, #f1404b 50%);
    background-image: radial-gradient(ellipse farthest-corner at center bottom, #ff7473 0%, #f1404b 50%);
  }
  
  .error_container .positive > .icon {
    background-color: #3ac569;
    border: 1px solid #3ac569;
    background-image: -webkit-radial-gradient(ellipse farthest-corner at center bottom, #88dba3 0%, #3ac569 50%);
    background-image: radial-gradient(ellipse farthest-corner at center bottom, #88dba3 0%, #3ac569 50%);
  }
  
  .error_container .message {
    font-size: 15px;
    position: relative;
    padding: 3px;
    margin-left: 90px;
    overflow: hidden;
  }
  
  .error_container .sub_message {
    font-size: 13px;
    padding:3px;
    margin: 2px;
    margin-left: 90px;
  }
  
  
  
  .error_container .button {
    font-size: 15px;
    line-height: 28px;
    padding: 0 8px;
    float: left;
    margin: 5px 10px;
  
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.12);
       -moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.12);
            box-shadow: 1px 1px 3px rgba(0,0,0,0.12);
    z-index: 100;
    margin-left: 100px;
  }
  
  
  .error_container .message > span {
    font-weight: 800;
  }
  
  .error_container .negative .message,
  .error_container .negative .sub_message {
    color: #000000;
  }
  
  .error_container .positive .message,
  .error_container .positive .sub_message {
    color: #000000;
  }
  
  
  .error_container .no {
    color: #f1404b;
    border: 1px solid #f1404b;
  }
  
  .error_container .no:hover {
    color: #fff;
    background-color: #f1404b;
    border: 1px solid #f1404b;
  }
  
  
  .error_container .ok {
    color: #3ac569;
    border: 1px solid #3ac569;
  }
  
  .error_container .ok:hover {
    color: #fff;
    background-color: #3ac569;
    border: 1px solid #3ac569;
  }
  

  /* FILE UPLOAD STYLES */

  .upload_container {
    display: flex;
    width: 100%;
    background: #f8f9ff;
    border: 2px dashed #8397ac;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-direction: column;
}

.upload_container .file_upload_input_label {
    display: inline-block;
    font-weight: bold;
    letter-spacing: 1.2px;
    font-size: 15px;
    padding: 5px 20px;
    background: #4daf7c;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    transition: 400ms ease;
    text-align: center;
}

.upload_container .file_upload_input_label:hover {
    background: #3d8c63;
}
.drag_and_drop {
    color: #202020;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
}
input[id="file_upload_input"] {
    display: none;
}

.upload_container > * {
  margin-top: 15px;
}
.upload_container > *:last-child {
  margin-bottom: 20px;
}

 /* CUSTOM SELECT STYLES */
 .custom-select-editorv {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 35px;
  padding: 5px 8px 5px 7px;
  background: #fff url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='24' height='24' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='black'/></g></svg>") no-repeat right 8px center;
  background-size: 10px;
  transition: border-color .1s ease-in-out,box-shadow .1s ease-in-out;
  border:1px solid #bbb;
  border-radius: 3px;
  width: 90%;
}

.custom-select-editorv:hover {
  border:1px solid #bbb;
}
.custom-select-editorv:focus {
  border:1px solid #bbb;
  box-shadow: 0 3px 5px 0 rgba(0,0,0,.2);
  outline: none;
}
select.custom-select-editorv::-ms-expand {
  display:none;
}

.custom-select-editorv {
  font-size: 15px;
  /* text-align: center; */
   /* text-align-last: center; */
   /* -moz-text-align-last: center; */
}


/* FILE HOLDER */

.signature_list_item {
  margin: 10px 4px;
  background-color:#b1c7ca;
  padding: 4px 5px;
  border-radius: 6px;
  position: relative;
  width: 100%;
}

.signature_list_item.selected {
  background-color: lightgoldenrodyellow; 
}

.signature_list_item .title,
.signature_list_item .sig_text {
    margin: 0px 0px;
}

.signature_list_item .title {
  max-width: calc(100% - 70px);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.signature_list_item .signature_item.sig_text {
  font-size: 20px;
}

.signature_list_item > span {
  padding: 3px;
  position: relative;
  width: 100% !important;
  cursor: pointer;
}

.signature_list_item > span p,
.signature_list_item > span div {
  color: #000000;
  font-weight: 400;
  display: inline-block;
}

.signature_list_item > span p,
.signature_list_item > span div {
  height: auto !important;
  margin: 0;
  padding: 0;
}


.signature_list_item  .mdi-dots-vertical-circle,
.signature_list_item  .mdi-close-circle-outline {
  margin: 0px 5px;
  margin-left: 20px;
  cursor: pointer;
  font-size: 20px !important;
}

.signature_list_item img.image-icon {
  width: 20px;
  max-height: 20px;
  height:auto;
}

.signature_list_item .signature_item {
  height: 35px;
  width: auto;
  max-width: 260px;
}

@media only screen and (max-width: 500px) {
  .signature_list_item .signature_item {
    max-width: 210px;
  }
}

  
.signature_list_item .signature_item.img {
  height: 40px !important;
  width: auto;
}

.signature_list_item .sig_text,
.signature_list_item img {
    background-color: #ffffff;
}
.signature_list_item > span.d-flex {
  display: flex;
  align-items: center;
}

.regular_background {
  background: none !important;
  margin: 5px;
  margin-right: 10px;
}



/* MULTI-SELECT DROPDOWN */


.multi-select-dropdown {
  width: 100%;
  height:35px; 
  position:relative;
}

.menu-btn {
  border:1px solid #bbb;
  font-size: 0.9em;
  padding: 8px 10px;
  background-color: white;
  width: 100%;
  border-radius: 3px;
  font-size: 13px;
   text-align: left;
}

.menu-btn::after {
  content: "\2335";
  float:right;
  font-weight: bold;
}


.msd-menu {
  padding-top: 10px;
  z-index: 200;
  margin-top: 4px;
  position: absolute;
  width:100%;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
  max-height: 160px;
  overflow-y: scroll;
}

.msd-menu-option {
  width: 100%;
  padding: 6px 10px 6px;
}

.msd-menu span:hover {background-color: #F5F5F5;}
.msd-menu span label,
.msd-menu span label input {cursor: pointer;}

.was-validated .no-selection {
  border-color: #dc3545;
}

.checkbox.style-c {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox.style-c input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox.style-c input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-c input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.checkbox.style-c:hover input ~ .checkbox__checkmark {
  background-color: #eee;
}
.checkbox.style-c:hover input:checked ~ .checkbox__checkmark {
  background-color: #f7cb15;
}
.checkbox.style-c .checkbox__checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 4px;
}
.checkbox.style-c .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.checkbox.style-c .checkbox__body {
  color: #333;
  line-height: 1.4;
  font-size: 14px;
}


















