.btn,
button{
    text-align: center;
    display: flex;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Circe-Regular";
    transition: background-color .3s ease-out;
}

.btn:hover{
    transform: scale(1.1) !important;
    transition: background-color .3s ease-in,transform .3s ease-in;
    color: white;
}

.green,
.green_color{
    color: #3fc270;
}

.green:hover{
    background-color: #3fc270;
}

.purple,
.purple_color{
    color: #8e3ad6;
}

.purple:hover{
    background-color: #8e3ad6;
}

.empty{
    background: transparent;
    border: 1px solid currentColor;
    font-size: 14px;
}

.flat_green{
    color: white;
    background-color: #3fc270;
}

.flat_green:hover{
    background-color: #2BAE5C;
}

.flat_purple{
    color: white;
    background-color: #8e3ad6;
}

.flat_purple:hover{
    background-color: #741EC0; 
}

.container{
    width: 1200px;
    margin: 0 auto;
}

input{
    width: 100%;
    padding: 15px 5px;
    border: none;
    outline: none;
    border-bottom: 1px solid #9b9b9b;
    font-family: 'Circe-Light';
    font-size: 18px;
    box-sizing: border-box;
}

input:focus{
    outline: none;
    border-bottom: 1px solid #8e3ad6;
}

input::placeholder{
    color: #9b9b9b;
}

button{
    -webkit-appearance: none;
    border: none;
}

table{
    width: 100% !important;
    border-collapse: collapse;
}

table tr:last-child th{
    border-bottom: 1px solid #d6d6d6;
}

table th{
    padding: 10px;
    text-align: left;
    color: #9b9b9b;
}

table th:first-child{
    padding-left: 0;
}

table th:last-child{
    /* padding-right: 0; */
    text-align: center;
}

table tbody tr:hover{
    background-color: #f7f7f7;
}

table tbody tr:hover td{
    height: 100%;
    box-sizing: border-box;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    font-family: 'Circe-Bold';
}

table tr{
    height: 62px;
    box-sizing: border-box;
}

table td{
    text-align: left;
    padding: 5px 10px;
    border-bottom: 1px solid #d6d6d6;
}
table td div{
    display: inline-block;
    margin-top: 5px;
}

table td:first-child{
    padding-left: 0;
}

table td:last-child{
    text-align: center;
    /* float: right; */
}

/* .box{
    width: 93px;
    height: 55px;
    border-radius: 5px;
    background-color: #ededed;
} */

.mdc-text-field,
.mdc-text-field::before, 
.mdc-text-field::after,
.mdc-select:not(.mdc-select--disabled),
.mdc-select__native-control, 
.mdc-select__selected-text
{
    background-color: white !important;
}

.mdc-select__native-control {
    font-size: 1.6rem;
}
.mdc-form-field,
.modal__links__item {
    font-size: 1.4rem;
}

.modal__links__item--size {
    font-size: 1.6rem;
}


.mdc-checkbox__native-control:enabled:not(:indeterminate)~.mdc-checkbox__background{
    background-color: #3fc270 !important;
    border-color: #3fc270 !important;
}
.mdc-checkbox__native-control:enabled:not(:checked)~.mdc-checkbox__background{
    background-color: transparent !important;
}

.mdc-checkbox__background svg path{
    stroke: white;
}

@media screen and (max-width: 768px) {
    .container {
        width: 100%;
    }
    table {
        width: 768px;
    }
}