.configurator {
    max-width: 1200px;
    width: 100%;
    min-height: calc(100dvh - 100px - 151px);
    height: fit-content;

    padding: 25px;
    margin: 0px auto;
}
.configurator .title {
    font-size: 40px;
    width: fit-content;
    margin: 0px auto;
    margin-bottom: 25px;
    text-align: center;
}

.modBase .title {
    font-size: 25px;
    width: fit-content;
    margin: 0px auto;
    margin-bottom: 25px;
}

.selector table {
    width: 100%;
    height: fit-content;

    margin-top: 50px;
    border-collapse: collapse;
}

.selector table thead th:first-of-type {
    text-align: left;
}

.selector table thead th:nth-child(1) {
    width: 450px;
}

.selector table thead th:nth-child(2) {
    width: 100px;
}

.selector table thead th:nth-child(3) {
    width: 250px;
}

.selector table thead th:nth-child(4) {
    text-align: right;
}

.selector table tbody tr td {
    padding: 5px 0px;
}

.selector table tbody tr td:not(:first-of-type) {
    text-align: center;
}

.selector table tbody tr td:last-child {
    width: 200px;
}

.selector table tbody tr td:nth-child(4) {
    text-align: right;
}

.selector table tbody .tFooter td b {
    display: block;
    width: 100%;
    text-align: right;
}

.selector table tbody tr td .counter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.selector table tbody tr td .counter .number {
    width: 100px;

    background-color: transparent;

    border: none;
    outline: none;

    color: white;
    font-family: manrope;
    font-size: 16px;
    text-align: center;
    
    -moz-appearance: textfield;

    padding: 0px 15px;
}

.selector table tbody tr td .counter .number::-webkit-outer-spin-button,
.selector table tbody tr td .counter .number::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.selector table tbody tr td .counter .btn {
    width: 35px;
    height: 35px;

    background-color: #a04e8b;
    padding: 5px 10px;

    border-radius: 8px;

    user-select: none;

    cursor: pointer;
}

.selector table tbody tr td .counter .btn:active {
    transform: scale(.95);
}

.selector table tbody tr.footerStart {
    border-top: 1px solid #a04e8b;
    margin-top: 15px;
}

.selector .buttons {
    margin: 25px 0px;
    margin-left: auto;
}

.selector .buttons .btn:nth-child(1) {
    margin-right: 25px;
}

.radio-inputs {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0px auto;
}

.radio-inputs > * {
    margin: 6px;
}

.radio-input:checked + .radio-tile {
    border-color: #a04e8b;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: #f5b1e4;
}

.radio-input:checked + .radio-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: #a04e8b;
    border-color: #a04e8b;
}

.radio-input:checked + .radio-tile .radio-icon svg {
    fill: #a04e8b;
}

.radio-input:checked + .radio-tile .radio-label {
    color: #f5b1e4;
}

.radio-input:focus + .radio-tile {
    border-color: #a04e8b;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #f5b1e4;
}

.radio-input:focus + .radio-tile:before {
    transform: scale(1);
    opacity: 1;
}

.radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    min-height: 150px;
    border-radius: 0.5rem;
    border: 2px solid #b5bfd9;
    background-color: #000000;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.15s ease;
    cursor: pointer;
    position: relative;
}

.radio-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    border: 2px solid #d9b5d4;
    background-color: #fff;
    border-radius: 50%;
    top: 0.25rem;
    left: 0.25rem;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
}

.radio-tile:hover {
    border-color: #a04e8b;
}

.radio-tile:hover:before {
    transform: scale(1);
    opacity: 1;
}

.radio-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 10px 0px;
}

.radio-icon img {
    width: 100px;
    height: 80px;
    object-fit: contain;
    object-position: center;
    margin: 0px auto;
}

.radio-label {
    color: white;
    transition: 0.375s ease;
    text-align: center;
    font-size: 13px;
}

.radio-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}




.selector .configuratedRequest {
    display: none;

    width: 100%;
    height: fit-content;

    overflow: hidden;

    margin: 0px auto;
    margin-bottom: 25px;

    padding: 25px;

    transition: height .2s ease-in-out;
}

.selector .configuratedRequest.open {
    display: block;
}

.selector .customRequest {
    display: none;

    width: 100%;
    height: fit-content;

    overflow: hidden;

    margin: 0px auto;
    margin-bottom: 25px;

    padding: 25px;

    transition: height .2s ease-in-out;
}

.selector .customRequest.open {
    display: block;
}

.selector .customRequest .moreServices {
    margin-bottom: 25px;
}

.selector .customRequest .moreServices .title {
    width: 100%;

    font-size: 25px;
    text-align: left;

    margin-bottom: 15px
}

.selector .customRequest .moreServices ul {
    padding-left: 25px;

    margin-top: 5px
}

.selector .form {
    width: 60%;
    height: fit-content;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;

    transition: height .2s ease-in-out;

    background-color: #1d1d1d;
    border-radius: 30px;

    padding: 25px;

    margin: 0px auto;
}

.selector .form .title {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.selector .form .group {
    width: 100%;
    height: 75px; 

    display: flex;
    flex-direction: column;

    padding: 10px;

    background-color: #111111;
    border-radius: 10px;
    border: 2px solid #111111;

    transition: border .1s ease-in-out;
}

.selector .form .group.big {
    height: 75px;

    transition: height .2s ease-in-out;
}

.selector .form .group.big:focus-within,
.selector .form .group.big.filled {
    height: 499.59px;
}

.selector .form .group:not(:last-child) {
    margin-bottom: 25px;
}

.selector .form .group:hover,
.selector .form .group:focus-within {
    border: 2px solid #a04e8b;
}

.selector .form .group label {
    color: #717171;
    font-size: 16px;

    padding: 0px 10px;

    transition: color, transform .1s ease-in-out;

    transform:translateY(calc(37.5px - 24px));
}

.selector .form .group:hover label,
.selector .form .group:focus-within label,
.selector .form .group label.filled {
    color: #f5b1e4;

    transform:translateY(0);
}

.selector .form .group input {
    display: none;

    color: white;

    background-color: #111111;

    border: none;
    outline: none;

    padding: 5px 10px;

    font-family: manrope, sans-serif;
}

.selector .form .group:hover input,
.selector .form .group:focus-within input,
.selector .form .group input.filled  {
    display: block;
}

.selector .form .group textarea {
    display: none;

    width: 100%;
    max-width: 100%;
    min-width: 100%;

    height: 28px;
    min-height: 28px;

    accent-color: #a04e8b;

    color: white;

    background-color: #111111;

    border: none;
    outline: none;

    padding: 5px 10px;

    font-family: manrope;

    transition: height .2s ease-in-out;
}

.selector .form .group:hover textarea,
.selector .form .group:focus-within textarea  {
    display: block;
}

.selector .form .group textarea.filled,
.selector .form .group textarea:focus  {
    display: block;

    height: 450px;
    min-height: 450px;
    max-height: 450px;
}

.selector .form .errorBox {
    display: none;

    color: #ef4242;

    margin-bottom: 25px;
}

.selector .mobilePriceSummary {
    display: none;
    flex-direction: column;
    flex-wrap: wrap;

    border-top: 1px solid #a04e8b;
    padding-top: 15px;
}

.selector .mobilePriceSummary .row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.selector .mobilePriceSummary .row:nth-child(1) {
    margin-bottom: 10px;
}

.selector .mobilePriceSummary .row .text {
    width: 155px;
}

@media screen and (max-width: 450px) {

    table td {
        font-size: 13px !important;
    }

    table thead th:nth-child(4) {
        display: none;
    }

    table td.sum {
        display: none;
    }

    .selector .mobilePriceSummary {
        display: flex;
    }

    .selector table tbody .tFooter {
        display: none;
    }

    .selector table tbody tr td {
    }

    .selector table tbody tr td .counter {
        width: fit-content !important;
        justify-content: flex-end !important;

    }

    .selector table td:nth-child(1) {
        width: 60px !important;
    }

    .selector table td:nth-child(2) {
        width: 60px !important;
        padding: 5px;
    }

    .selector table td:nth-child(3),
    .selector table th:nth-child(3) {
        width: 111px !important;
    }

    .selector table tbody tr td .counter .number {
        width: 40px;
        padding: 0px 5px;
    }

    .selector .buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .selector .buttons .btn-secondary {
        margin-right: 12.5px !important;
    }

    .selector .buttons .btn {
        width: 100%;
        margin: 12.5px;
    }

    .selector .buttons .btn span {
        display: block;
        margin: 0px auto;
        text-align: center;
    }
    
    .selector .customRequest {
        padding: 0px !important;
    }

    .selector .configuratedRequest {
        padding: 0px !important;
    }

    .selector .form {
        width: 100%;
    }

    .infoPoint {
        max-width: 75% !important;
    }
}

.infoPoint {
    display: none;

    width: fit-content;
    max-width: 1000px;

    background-color: #a04e8b;
    box-shadow: 0 0 20px #f5b1e4;

    border-radius: 15px;

    padding: 15px;

    position: absolute;
    top: 550px;
}