/* The radio-wrapper */
.radio-wrapper {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 5px;
}

/* Hide the browser's default radio button */
.radio-wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.radio-wrapper .checkmark {
    position: absolute;
    top: 11px;
    left: 0px;
    transform: translate(0, -50%);
    height: 14px;
    width: 14px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #512772;
}

/* On mouse-over, add a grey background color */
.radio-wrapper:hover input ~ .checkmark {
    background-color: #eee;
}

/* When the radio button is checked, add a blue background */
/*.radio-wrapper input:checked ~ .checkmark {*/
/*    background-color: #2196F3;*/
/*}*/

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

/* Show the indicator (dot/circle) when checked */
.radio-wrapper input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-wrapper .checkmark:after {
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #512772;
}

/* Customize the label (the container) */
.checkbox-wrapper {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

/* Create a custom checkbox */
.checkbox-wrapper .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
    border-radius: 2px;
}

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

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

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

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

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

.checkbox label {
    padding-left: 25px;
}

input[type=checkbox] {
    margin-left: -25px !important;
}

.chk_label {
    color: #574d55;
}

.cus-btn1 {
    font-size: 15px !important;
    line-height: 18px !important;
}

.select-wrapper {
    position: relative;
}

.select-arrow {
    position: absolute; right: 0; top: 50%; transform: translate(-10px, -50%); color: #512772; font-size: 12px; pointer-events: none;
}

.goodlugg-select {
    background: none;
    background-color: white;
}

.calendar-wrapper {
    position: relative;
}

.calendar-button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    color: #512772;
    font-size: 15px;
    pointer-events: none;
}

.goodlugg-form, .form-control {
    border-color: #dddddd;
}

.btn-tp button {
    border-color: #dddddd;
    top: 0;
}

textarea {
    height: unset !important;
}
