/*
    BAKCGROUND COLOR
*/

.bg-primary {
    background-color: rgb(249, 146, 28);
}

.bg-primary-100 {
    background-color: rgba(249, 146, 28, 0.1);
}

.bg-dark {
    background-color: #2e2e2e;
}

.bg-gray {
    background-color: #e9ecef;
}

.bg-orange {
    --bg-opacity: 1;
    background-color: #f17201;
    background-color: rgba(255, 229, 172, var(--bg-opacity));
}

/*
    BUTTON
*/

.btn {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
}

.btn svg {
    margin-right: 6px;
}

.btn-primary,
.btn-secondary {
    font-weight: 500;
    background-color: rgb(249, 146, 28);
    transition: background 0.3s;
    box-shadow: 2.5px 2.5px 10px 2.5px rgba(241, 116, 1, 0.25);
}

.btn-secondary {
    background-color: #2e2e2e;
    box-shadow: 2.5px 2.5px 10px 2.5px rgba(46, 46, 46, 0.25);
}

.btn-primary:hover {
    background-color: rgb(247, 132, 0);
}

.disabled{
    opacity: 0.8;
}

.color-primary {
    color: rgb(247, 132, 0);
}

.link-primary {
    color: rgb(247, 132, 0);
}

.link-primary:hover {
    color: rgb(249, 146, 28);
}

.btn-secondary:hover {
    background-color: #1b1b1b;
}

/*
    FONTS AND COLOR TEXT
*/

.text-white {
    color: #fff;
}

.text-primary {
    color: #f17201;
}

.tx-danger {
    color: red;
}

.text-orange {
    color: #f17201;
    font-weight: 600;
}

/*
    DEFAULT
*/

body {
    font-size: 16px;
}

.border-0 {
    border: 0;
}

.flex {
    display: flex;
}

.flex-1 {
  flex: 1;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.justify-between {
   justify-content: space-between;
}


.justify-between {
  justify-content: space-between;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-column {
    flex-direction: column;
}

.radio input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    width: 25px;
    height: 25px;
    padding: 3px;
    background-clip: content-box;
    border: 2px solid #f17201;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 8px;
}

.radio input[type="radio"]:checked {
    background-color: #f17201;
}

.w-50c {
    width: 50%;
}

.pg-10px {
    padding: 10px !important;
}

.pg-10px-20px {
    padding: 10px 20px;
}

.pg-10px-24px {
    padding: 10px 24px;
}
.width-table {
    width: 450px;
    max-width: 450px;
}

.block {
    display: block;
}

.min-w-150px {
    min-width: 150px;
}

.text-sm {
    font-size: 14px;
}

.main {
    width: 100%;
    padding: 40px 2.5% 20px;
    overflow-y: auto;
}

.pointer {
    cursor: pointer;
}

.none {
    display: none;
}

.mb-20px {
    margin-bottom: 20px;
}

.mr-20px {
  margin-right: 20px;
}

.ml-5px {
    margin-left: 5px;
}

.mw-8px {
  margin-left: 8px;
  margin-right: 8px;
}

.strong {
    font-weight: bold;
}

.form-input:focus {
    border-color: #f17201;
}

.form-input--error {
    border: #f02b2d solid 1px;
}

.automatically-filled {
    background-color: rgba(220, 216, 210, 0.3);
}

.radio-button {
    width: 20px;
    height: 40px;
    background-color: #1b1b1b;
}

.align-center {
    align-items: center;
}

.flash-modal,
.modal-container {
    margin: auto;
}

/* RADIO BUTTON SWITCH */

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #f9921c;
}

input:focus + .slider {
    box-shadow: 0 0 1px #f9921c;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* flash menssages*/

.flash {
    font-size: larger;
    color: #03543f;
}
.error {
    font-size: larger;
    color: #f02b2d;
}

/* Arrow progress bar */

.arrow-steps {
    height: 60vw;
}

@media (min-width: 320px) {
    .arrow-steps {
        height: 125px;
    }

}

@media (min-width: 414px) {
    .arrow-steps {
        height: 85px;
    }

}

@media (min-width: 640px) {
    .arrow-steps {
        height: initial;
    }

}

.arrow-steps .step {
    font-size: 14px;
    text-align: center;
    color: #777;
    margin: 0 1px 1px 0;
    padding: 10px 0px 10px 0px;
    width: auto;
    float: left;
    position: relative;
    background-color: #ddd;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-left: 20px;
}

.arrow-steps .step:after,
.arrow-steps .step:before {
    content: "";
    position: absolute;
    top: 2px;
    right: -17px;
    width: 0;
    height: 0;
    border-top: 19px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid #ddd;
    z-index: 2;
}

.arrow-steps .step:before {
    right: auto;
    left: 0;
    border-left: 17px solid #fff;
    z-index: 0;
}

.arrow-steps .step:first-child:before {
    border: none;
}

.arrow-steps .step:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.arrow-steps .step:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.arrow-steps .step.current {
    color: white;
    background-color: rgb(247, 122, 0);
}

.arrow-steps .step.current:after {
    border-left: 17px solid rgb(247, 122, 0);
}

.arrow-steps .step.finished {
    color: white;
    background-color: rgb(249, 146, 28);
}

.arrow-steps .step.finished:after {
    border-left: 17px solid rgb(249, 146, 28);
}

.arrow-steps .step.first-step {
    padding-left: 10px;
}

/* collapsible */

.collapsible {
    background-color: #2e2e2e;
    color: white;
    cursor: pointer;
    padding: 6px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    margin: 2px;
    border-radius: 6px;
}

.collapsible::after {
    content: "\25be";
    float: right;
    transform: scale(1);
}
.collapsible:hover {
    background-color: #3e2e2e;
}

.active-collapsible {
    background-color: #3e2e2e;
}

.active-collapsible::after {
    content: "\25b4";
}

.contentCollapsable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s;
}

.contentCollapsable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s;
}
