.custom-form ul {
    list-style: none;
    margin:0px;
    padding:0px;
}
.custom-form .text, .custom-form .email, .custom-form .phone, .custom-form .select, .custom-form .textarea {
    width: 100%!important;
}

.custom-form input[type="text"]:focus, .custom-form textarea:focus{
    outline: none !important;
    border:1px solid var(--bs-primary);
    transform: scale(1);
}
.custom-form label.file, .custom-form label.multipleFiles {
    margin-right:10px;
}
.custom-form .checkbox{
    margin-right:10px;
    float: left;
}
.custom-form h4 {
    font-size: 1.5rem;
}
.custom-form input[type="text"], .custom-form input[type="tel"]{
    margin:15px 0 15px 0;
    background-color: #fbfbfb;
    border: solid 1px #dadada;
    border-radius: 10px;
    font-size: 16px;
    padding: 13px;
    height: auto;
    font-weight: 500;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
    width:100%!important;
}
.custom-form select {
    display: block;
    width: 100%;
    background-color: #fbfbfb;
    border: solid 1px #dadada;
    border-radius: 10px;
    font-size: 16px;
    padding: 13px;
    height: auto;
    font-weight: 500;
    line-height: 1.5;
    color: #212529;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    appearance: none;
    margin:15px 0 15px 0;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
}
.custom-form .textarea {
    margin:15px 0 15px 0;
}
.custom-form textarea {
    height:125px;
    display: block;
    width: 100%;
    background-color: #fbfbfb;
    border: solid 1px #dadada;
    border-radius: 10px;
    font-size: 16px;
    padding: 13px;
    height: auto;
    font-weight: 500;
    line-height: 1.5;
    color: #212529;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    appearance: none;
    margin:10px 0 10px 0;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
}
/* Base for label styling */
/*.custom-form   [type="checkbox"]:not(:checked),
.custom-form  [type="checkbox"]:checked {
    position: absolute;
    left: 0;
    opacity: 0.01;
}*/
.custom-form  [type="checkbox"]:not(:checked) + label,
.custom-form   [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 2.3em;
    font-size: 16px;
    line-height: 1.7;
    cursor: pointer;
}

/* checkbox aspect */
.custom-form  [type="checkbox"]:not(:checked) + label:before,
.custom-form  [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.4em;
    height: 1.4em;
    border: 1px solid #aaa;
    background: #FFF;
    border-radius: .2em;
    box-shadow: inset 0 1px 3px rgba(0,0,0, .1);
    -webkit-transition: all .275s;
    transition: all .275s;
}

/* checked mark aspect */
.custom-form  [type="checkbox"]:not(:checked) + label:after,
.custom-form  [type="checkbox"]:checked + label:after {
    content: '\2713';
    position: absolute;
    top: .525em;
    left: .18em;
    font-size: 1.375em;
    color: var(--bs-primary);
    line-height: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}

/* checked mark aspect changes */
.custom-form  [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
}

.custom-form  [type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
}

/* Disabled checkbox */
.custom-form  [type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #e9e9e9;
}

.custom-form  [type="checkbox"]:disabled:checked + label:after {
    color: #777;
}

.custom-form  [type="checkbox"]:disabled + label {
    color: #aaa;
}

.custom-form .radio-options-wrapper, .custom-form .multi-checkbox-options-wrapper {margin-top:15px;}

/* Accessibility */
.custom-form  [type="checkbox"]:checked:focus + label:before,
.custom-form   [type="checkbox"]:not(:checked):focus + label:before {
    box-shadow: inset 0 1px 3px rgba(0,0,0, 0.1);
}

.custom-form input[type="submit"] {
    background-color: var(--bs-primary)!important;
    padding: 20px 10px;
    border-radius: 3px;
    color: #FFFFFF!important;
    font-size: 24px!important;
    text-transform: capitalize;
    font-family: default;
    width: 100%;
    font-weight: 500;
    line-height: 1.7em!important;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    border-width: 0px!important;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: all!important;
    transition-property: all!important;
    margin:20px 0 20px 0;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
}

.custom-form input[type="submit"]:hover {

    background-color: var(--bs-primary)!important;
    opacity:0.7;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.4);
}

