.contact-form {
    position: relative;
    z-index: 999;
}
.sidebar-content .button {
    background-color: #000;
    border-color: #000;
    color: #fff;
    padding: 1rem 4rem;
    text-transform: uppercase;
    transition-duration: .15s;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    cursor: pointer;
}
.sidebar-content .button:hover {
    color: #000;
    background-color: transparent;
}
.sidebar-btn {
    transition-duration: .15s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    padding: 12px;
    border-bottom-left-radius: .375rem;
    border-top-left-radius: .375rem;
    min-width: 60px;
    position: fixed;
    right: 0;
    bottom: 5rem;
    z-index: 50;
    background-color: #F25C42;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: -100px;
}
.translate-x-20 .sidebar-btn {
    margin-right: 0;
}
.translate-x-20 .contact-btn .text {
    display: none;
}
.contact-btn {
    color: #fff;
    z-index: 60;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.sidebar-btn:hover {
    margin-right: 0;
}
.sidebar-btn:hover .contact-btn {
    color: #fff;
}
.translate-x-20.sidebar-content .sidebar-btn {
    right: 100%;
}
.translate-x-full {
    transform: translate(100%, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}
.translate-x-20 {
    transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}
.sidebar {
    padding: 24px;
    height: 100%;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.sidebar-content {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background-color: #f7f4f8;
    max-width: 100%;
    z-index: 99;
    transition: transform .4s ease-in-out;
}
.d-flex-row {
    display: flex;
    flex-wrap: wrap;
}


.form-control {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: .625rem;
    padding: .875rem 0;
    background-color: transparent;
    border-bottom: solid 1px #000;
    width: 100%;
    color: #000;
}
select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url('data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2714%27%20height%3D%278%27%20viewBox%3D%270%200%2014%208%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%3E%3Cpath%20d%3D%27M1%201l6%206%206-6%27%20stroke%3D%27%23000%27%20stroke-width%3D%271.5%27%20fill%3D%27none%27%20fill-rule%3D%27evenodd%27%2F%3E%3C%2Fsvg%3E') no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
}
.form-control::placeholder {
    color: #000;
}
.col-full, .col-50 {
    width: 100%;
}

.col-50{
    padding: 0 20px 0px 0px!important;
}

.close-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
}
.close-icon svg {
   max-width: 20px;
   stroke: #000;
   cursor: pointer;
}
.custom-rdio-btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:10px;
}
.custom-rdio-btn .rdio {
    position: relative;
}
.custom-rdio-btn input[type=radio] {
  opacity: 0;
}
.custom-rdio-btn input[type=radio]:focus-visible + label::before,
.custom-checkbox .checkbox:focus-visible + label:before {
    outline: 2px solid orange;
}

.custom-rdio-btn label {
  padding-left: 10px;
  cursor: pointer;
}
.custom-rdio-btn label:before {
    width: 14px;
    height: 14px;
    position: absolute;
    top: 3px;
    left: 0;
    content: "";
    display: inline-block;
    border-radius: 50px;
    border: 1px solid #000;
    background: transparent;
}
.custom-rdio-btn input[type=radio]:checked + label::before {
    background: #000;
}
.custom-rdio-btn input[type=radio]:checked + label::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 5px;
    display: inline-block;
    font-size: 11px;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50px;
}

.custom-checkbox input[type=checkbox]{
    max-width: 200px!important;
}
.rdio-default input[type=radio]:checked + label:before {
  border-color: #000;
}
.rdio-primary input[type=radio]:checked + label::after {
  background-color: #fff;
}
.custom-checkbox {
    margin-bottom: 10px;
    position: relative;
}
.custom-checkbox a {
    border-bottom: solid 1px #000;
    position: relative;
    z-index: 2;
}
.custom-checkbox-btn p {
    font-size: 14px;
    margin: .5rem 0;
}
.custom-checkbox label {
    position: relative;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}

.custom-checkbox [type=checkbox]:checked:after {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: 0.5s all;
    opacity: 1;
    appearance: none;
}
.custom-checkbox [type=checkbox]:checked {
    width: 100%;
    appearance: none;
    left: 0;
    opacity: 1;
}
.custom-checkbox input {
    cursor: pointer;
    opacity: 0;
    position: absolute;
    top: 3px;
    width: 18px;
    height: 18px;
    z-index: 1;
    left: 0;
}
.custom-checkbox [type=checkbox]:checked:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 100%;
    background-color: #000;
    top: 5px;
}
.custom-checkbox label:before {
    content: "";
    border: 1px solid #000;
    padding: 8px;
    position: relative;
    margin-right: 10px;
    transition: 0.5s all;
    top: 7px;
}
.custom-radio-content {
  justify-content: space-between;
  width: 100%;
  padding-left: 40px;
  gap: 0.25rem;
}
.custom-radio-button .radio-cricle-button {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 20px;
  border: solid 1px #dae1e7;
  border-radius: 50%;
  top: 15px;
  transition: 0.5s all;
}
#form-submit-response{
    border: 1px solid #000;
    padding: 2%;
    border-radius: 10px;
    background-color: #d1ecf1;
    width: 90%;
    font-size: 20px;
    line-height: 20px;
    display: none;
    text-align: center;
}

#field-prefferedContact{
    margin-top: 15px;
    margin-bottom: 10px;
}
@media(min-width:768px){
    .contact-form {
        display: block;
    }
    .sidebar {
        padding: 36px;
        align-items: center;
    }
    .col-50 {
        width: 50%;
        padding: 0 6px;
    }
    .form-control {
        font-size: 1.125rem;
    }
    .close-icon {
        top: 35px;
        right: 36px;
    }
    .custom-rdio-btn {
        gap: 20px;
    }
    .custom-checkbox {
        margin-bottom: 0px;
    }
    .custom-rdio-btn label:before {
        top: 7px;
    }
    .custom-rdio-btn input[type=radio]:checked + label::after {
        top: 12px;
    }
}
@media(min-width:1280px){
    .sidebar-content {
        width: 50%;
    }
}


#sidebar-contact-form {
    max-width: 700px;
    width: 100%;
    margin: auto;
    padding-top: 60px;
}

@media(max-width:767px){
    .sidebar {
        align-items: flex-start;
        padding-top: 80px;
    }
}

@media(max-width:411px){
#sidebar-contact-form .d-flex-row{
    padding-top: 420px;
}
}
