.checkout-index-index .shipping-insurance-wrapper {
    padding: 15px 10px;
    background: #FCE5CD;
    margin-bottom: 31px;
    display: flex;
    justify-content: space-between;
}

.checkout-index-index .shipping-insurance-wrapper .first input[type="checkbox"] {
    width: 25px;
    height: 25px;
    position: relative;
    top: 18px;
    visibility: hidden;
}

.checkout-index-index .shipping-insurance-wrapper .first .shipping-description {
    margin-left: 53px;
}
.checkout-index-index .shipping-insurance-wrapper .second {
    display: flex;
    align-items: center;
}

.checkout-index-index .shipping-insurance-wrapper .shipping-more-info{
    border: 1px solid #d57f28;
    padding: 10px 16px;
    border-radius: 5px;
    color: #d57f28;
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
}

.checkout-index-index .shipping-insurance-wrapper .button-wrapper {
    display: inherit;
}

.checkout-index-index .shipping-insurance-wrapper .info-icon{
    width: 10px;
    height: 10px;
    position: absolute;
    right: 5px;
    top: 5px;
}

.checkout-index-index .shipping-insurance-wrapper .label-title {
    color: #d57f28;
    font-weight: bold;
    font-size: 16px;
    margin-left: 20px;
}
.form.methods-shipping {
    padding-bottom: 3px;
}

.alert.alert-success {
    color: green;
}

.alert.alert-danger {
    color: red;
}

/* checkbox */

.checkbox-container {
    /* display: block; */
    position: relative;
    /* padding-left: 35px; */
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Hide the browser's default checkbox */
  /* .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

   */
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 11px;
    left: 0px;
    height: 30px;
    width: 30px;
    background-color: #fff;
    right: 0;
    bottom: 0;
    border-radius: 3px;
  }

  /* On mouse-over, add a grey background color */
  .checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
  }

  /* When the checkbox is checked, add a blue background */
  .checkbox-container input:checked ~ .checkmark {
    background-color: gray;
  }

  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the checkmark when checked */
  .checkbox-container input:checked ~ .checkmark:after {
    display: block;
  }

  /* Style the checkmark/indicator */
  .checkbox-container .checkmark:after {
    left: 12px;
    top: 5px;
    width: 6px;
    height: 17px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

@media (max-width:767px) {
    body.checkout-index-index .shipping-insurance-wrapper label.label-title {
        margin-left: 0px !important;
        font-size: 15px;
    }
    body.checkout-index-index .shipping-insurance-wrapper .first .shipping-description {
        margin-left: 35px !important;
    }

    body .checkmark {
        width: 22px;
        height: 22px;
    }

    body .checkbox-container .checkmark:after {
        left: 8px;
        top: 0px;
    }
    body .checkout-index-index .shipping-insurance-wrapper .shipping-more-info {
        padding: 10px 13px;
    }
    body .checkout-index-index .shipping-insurance-wrapper .label-title {
        font-size: 15px;
    }
    body .form.methods-shipping {
        padding-bottom: 0px;
    }
}
