

/* promoplan */

section.promoplan {
    border-radius: 15px;
    background: #F3F3F3;
    margin: var(--extrasmall) 0;
    padding: var(--extralarge) 0;
    counter-reset: section;
}


section.promoplan .promoplan-header {
    margin-bottom: var(--medium);
}

section.promoplan .promoplan-header ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--small);
    margin-bottom: 0;
}

section.promoplan .promoplan-header ul li {
    list-style: none;
}

section.promoplan .promoplan-header ul li a {
    display: inline-block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

section.promoplan .promoplan-header ul li a:hover {
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    text-decoration-color: currentColor;
}

section.promoplan .promoplan-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: var(--medium)

}

section.promoplan .promoplan-item:last-child {
    margin-bottom: 0
}

section.promoplan .promoplan-item .promoplan-item__header {
     display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: var(--medium);
    gap: var(--medium);
}


section.promoplan .promoplan-item .promoplan-item__header:has(.promoplan-item__header-edit) {
    cursor: pointer;
}
section.promoplan .promoplan-item .promoplan-item__header:has(.promoplan-item__header-edit) h4 {
    padding-left: 37.5px;
    position: relative;
}

section.promoplan .promoplan-item .promoplan-item__header:has(.promoplan-item__header-edit) h4:before {
    counter-increment: section;
    content: counter(section);
    background: #172e38;
    color: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 0;
}

section.promoplan .promoplan-item .promoplan-item__header .promoplan-item__header-value {
    color: #858585;
}


section.promoplan .promoplan-item .promoplan-item__header .promoplan-item__header-edit {
    width: 30px;
    height: 30px;
    display: block;
    background: #F5F5F5;
    background-image: url(../images/pencil.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    margin-left: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

section.promoplan .promoplan-item .promoplan-item__header .promoplan-item__header-edit:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

section.promoplan .promoplan-item .promoplan-item__header * {
    margin-bottom: 0
}

section.promoplan .promoplan-item .promoplan-item__content {
    position: relative;
    
    padding: var(--mediumlarge) var(--medium) var(--mediumlarge) var(--medium);
}


section.promoplan .promoplan-item .promoplan-item__content:before {
    content: '';
    border-top: 2px solid #F3F3F3;
    position: absolute;
    top: 0;
    right: var(--medium);
    left: var(--medium);
}



section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__subtitle:not(:last-child) {
    margin-bottom: var(--medium)
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__subtitle :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
    margin-bottom: 2.5px
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__subtitle *:last-child {
    margin-bottom: 0;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form {
    max-width: 690px;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form:not(:last-child) {
    margin-bottom: var(--small);
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .input {
     margin-top: calc(var(--tiny) * 2);
     position: relative;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form [class*='col']:is(:nth-child(1), :nth-child(2)) .input {
    margin-top: 0;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .input:has(input[placeholder], textarea[placeholder]) label {
    position: absolute;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    z-index: 1;
    margin-bottom: 0;
    top: 7.5px;
    left: 20px;
    width: auto;
    display: block;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.25;
    border: 0;
}


section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .input:has(input[placeholder], textarea[placeholder]):has(:placeholder-shown) label {
   top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 12.5px 20px;
    font-size: inherit;
    font-weight: 400;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .input:has(input[placeholder], textarea[placeholder]) :is(input, textarea) {
    padding: 18.75px 20px 6.25px 20px;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .input:has(input[placeholder], textarea[placeholder]):has(:placeholder-shown) :is(input, textarea) {
    padding: 12.5px 20px;
}


section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .input.input--percentage:after {
    content: '%';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    pointer-events: none;
}

.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
    background: #F5F5F5;
    padding: 10px 20px;
    border-radius: 20px;
    z-index: 999;
    font-size: 14px;
   /* box-shadow: 0 0 0 1.5px #000000 inset;*/
}

.ui-autocomplete li {
    list-style: none;
    padding: 2.5px 0;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    white-space: nowrap;
}

.ui-autocomplete li:hover {
    font-weight: 500
}

.ui-autocomplete li div {

}

.ui-helper-hidden-accessible {
    display: none;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .logo {
    margin-top: calc(var(--tiny)* 2);
    position: relative;
    padding: 20px;
    background: #F5F5F5;
    color: #000000;
    border-radius: 20px;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .logo img {
    max-width: 210px;
    max-height: 90px;
        line-height: 0;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .file {
    margin-top: calc(var(--tiny)* 2);
    position: relative;
    padding: 20px;
    background: #F5F5F5;
    color: #000000;
    border-radius: 20px;
    min-height: 90px;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .file img {
    max-width: 210px;
    max-height: 90px;
    line-height: 1;
    display: block;
    margin: 15px 0;
}


section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .file label {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
   
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .file input {
    margin-top: 7.5px;
        font-family: "mic-32-new-web", sans-serif;
        padding: 0;
}


section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .file input::file-selector-button {
    border-radius: 50px;
    background: #172e38;
    color: #ffffff;
    padding: 10px 15px;
    font-weight: 600;
    border: 0;
    font-family: 'Clash Display';
    margin-right: 7.5px;


}


section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .file small {
    margin-top: 7.5px;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .radio {
        display: -ms-flexbox;
    display: flex
;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #AFAFAF;
    padding: 12.5px;
    gap: 17.5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    margin-top: calc(var(--extrasmall) * 2);
    cursor: pointer;
    line-height: 1.375
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form [class*='col']:is(:nth-child(1), :nth-child(2)) .radio {
    margin-top: 0;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .radio:hover {
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .radio:has(input:checked) {
    border-color: #7ED676;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .radio.invalid {
    border-color: #ff0000
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .radio:after {
    content: '';
    border: 1px solid #AFAFAF;
    width: 15px;
    height: 15px;
    border-radius: 2px;
    position: absolute;
    top: 12.5px;
    right: 12.5px;

    background-image: url(../images/check.svg);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .radio:has(input:checked):after {
    background-color: #7ED676;
    border-color: #7ED676;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .radio input {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .radio .radio__image {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background: #172e38;
    width: 90px;
    border-radius: 5px;
    overflow: hidden;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .radio .radio__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .radio .radio__content b {
    display: block;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .radio .radio__content .btn {
        margin-top: 7.5px;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .radio .radio__select {
       margin-top: var(--extrasmall);
    flex: 0 0 100%;
    max-width: 100%;
}



section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .radio .radio__select label {
    font-weight: normal;
    padding: 10px 20px 0 20px;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .select {
    position: relative;
    border-radius: 10px;
    border: 1px solid #AFAFAF;
    padding: 20px;
    display: block;
    font-size: 14px;
    line-height: 1.375
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .select.selected {
    border-color: #7ED676;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .select img {
        height: 20px;
    width: auto;
    margin-bottom: var(--tiny);
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .select label.select-toggle {
    background: #ABABAB;
    width: 30px;
    height: 17.5px;
    border-radius: 50px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .select label.select-toggle:has(input:checked) {
     background: #7ED676;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .select label.select-toggle:before {
    content: '';
    position: absolute;
    height: 12.5px;
    width: 12.5px;
    top: 2.5px;
    bottom: 2.5px;
    left: 2.5px;
    background: #ffffff;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}



section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .select label.select-toggle:has(input:checked):before {
    left: 15px;
   
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .select label.select-toggle input {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}


section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .select [data-open-modal] {
        width: 22.5px;
    height: 22.5px;
    background: #000000;
    background-image: url(../images/information.svg);
    background-size: 10%;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    display: block;
    margin-top: var(--large);
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .select [data-open-modal]:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .select b {
    display: block;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .select select {
    margin-top: var(--extrasmall)
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form .select select + label {
    font-weight: normal;
    padding: 10px 20px 0 20px;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__table  {
    padding-left: var(--small)
}
 

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__table table {
    margin-bottom: 0;
    max-width: 300px;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__table table tbody {

}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__table table tfoot th {
    color: #7ED676;
    padding-top: 10px;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__table table tfoot td {
    font-size: 30px;
    text-align: right;
    padding-top: 10px;
        font-family: 'Clash Display';
            font-weight: 600;
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__navigation {
    margin-top: var(--medium);
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: var(--small);
}

section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__navigation .btn:nth-child(2) {
    margin-right: auto;
}

section.promoplan .promoplan-summary {
    padding: var(--medium);
    background: #ffffff;
    position: sticky;
    top: calc(var(--extrasmall)* 2);
    border-radius: 15px;
    max-width: 330px;
}


section.promoplan .promoplan-summary .promoplan-summary__image {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background: #F3F3F3;
    width: 75px;
    border-radius: 5px;
    overflow: hidden;
        margin-bottom: var(--small);
}

section.promoplan .promoplan-summary .promoplan-summary__image img {
        position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

section.promoplan .promoplan-summary ul {
    margin-bottom: 0
}

section.promoplan .promoplan-summary ul li {
    list-style: none;
    padding-right: 30px;
    position: relative;
    margin-bottom: 5px;
}

section.promoplan .promoplan-summary ul li:has(.btn[data-open-modal]) {
     margin-bottom: 10px;
}



section.promoplan .promoplan-summary ul li:last-child {
    margin-bottom: 0;
}

section.promoplan .promoplan-summary ul li .promoplan-summary__edit {
       width: 22.5px;
    height: 22.5px;
    display: block;
    background: #F5F5F5;
    background-image: url(../images/pencil.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    margin-left: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    padding: 0;
    margin: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

section.promoplan .promoplan-summary ul li .promoplan-summary__edit:hover {
    -webkit-transform: scale(1.1) translateY(-50%);
    transform: scale(1.1) translateY(-50%);
}

section.promoplan .promoplan-summary .promoplan-summary__phone {
        display: block;
    color: #F25C2E;
    margin-top: var(--small);
}

section.promoplan .promoplan-summary .promoplan-summary__phone :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
    margin-bottom: 5px;
}

/* Information */

section.information {
    border-radius: 15px;
    background: #F3F3F3;
    margin: var(--extrasmall) 0;
    padding: var(--extralarge) 0;
}

section.information .information-header {
    padding-bottom: var(--small)
}

section.information .information-header *:last-child {
    margin-bottom: 0
}

section.information .information-item {
    padding: var(--large) 0;
    position: relative;
}

/*section.information .information-item:last-child {
    padding-bottom: 0
}*/

/*section.information .information-item:not(:last-child):after {
        content: '';
    position: absolute;
    border-bottom: 2px solid #ffffff;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    pointer-events: none;
}*/

section.information .information-item .information-item__header {
    margin-bottom: var(--medium)
}

section.information .information-item:has(.information-item__content:not(.information-item__content--transparent)) .information-item__header {
    padding: 0 var(--largehuge);
}

section.information .information-item .information-item__header *:last-child {
    margin-bottom: 0
}

section.information .information-item .information-item__content:not(.information-item__content--transparent) {
    padding: var(--large) var(--largehuge);
    background: #ffffff;
    border-radius: 15px;
    height: 100%;
}



section.information .information-item .information-item__content + .information-item__content {
    margin-top: var(--small) 
}

section.information .information-item .information-item__content *:last-child {
    margin-bottom: 0
}

/* Accordion */

.accordion {
 
}

.accordion .accordion-item {
    border-bottom: 1px solid #000000;
    padding: var(--extrasmall) 0;
	border-radius: 0;
    background: transparent;
	margin-bottom: 0
}

.accordion .accordion-item:first-child {
    padding-top: 0;
}


.accordion .accordion-item .accordion-item__header {
    position: relative;
    cursor: pointer;
    display: block;
    padding-right: 30px;
    text-decoration: none;
    color: inherit;
        margin-bottom: 0;
            font-weight: 500;
}

.accordion .accordion-item .accordion-item__header:after{
  content: '+';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 0;
    width: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.accordion .accordion-item .accordion-item__header[aria-expanded="true"]:after{
    content: '-'
}

.accordion .accordion-item .accordion-item__content {
    padding-top: var(--tiny);
}

.accordion .accordion-item .accordion-item__content *:last-child {
    margin-bottom: 0
}



/* Cart */

/*.toggler {
    position: fixed;
    z-index: 98;
    width: -webkit-fit-content;
    width: fit-content;
    top: 40%;
    -webkit-transform: translate(50%, -50%) rotate(90deg);
    transform: translate(50%, -50%) rotate(90deg);
    right: 37.5px;
    border-radius: 0px 0px 20px 20px;
    background: #7ED676;
    padding: 15px 22.5px 15px 67.5px;
    line-height: 1.125;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Clash Display';
    font-size: 20px;
     -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.toggler:hover {
    background: #F25C2E;
}

.toggler.active {
    right: 300px;
}


.toggler:before {
    content: url(../images/icon.svg);
    position: absolute;
    bottom: 15px;
    left: 20px;
    width: 37.5px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    line-height: 0;
}*/


/* Cart */

.cart {
       position: fixed;
    padding: var(--medium);
    background: #ffffff;
    top: var(--extralarge);
    right: -390px;
    z-index: 99;
    width: 390px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    max-height: calc(100% - calc(var(--extralarge)* 2));
    overflow: scroll;

        border: 1px solid #F3F3F3;
    border-right: 0;
}

.cart.active {
    right: 0;
}

.cart-toggler {
   width: 75px;
    position: fixed;
    top: var(--huge);
    right: 0;
    line-height: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 98
}

.cart-toggler.active {
    right: 390px;
}

.cart-toggler:not(.active):after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -10px;
    width: 10px;
    background: #7ED676;
    pointer-events: none;
}

/*.cart:not(:has(.active)):hover {
    -webkit-transform: translateY(-50%);
    transform: translate(-5%, -50%);
}*/


.cart-toggler:not(.active):hover {
    right: 10px;
}

.cart-toggler:before {
    content: url(../images/cart-toggler.svg);
    display: block;
}

.cart .cart-header {
    padding-bottom: var(--small);
    border-bottom: 2px solid #F3F3F3;
   

    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.cart .cart-header :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
    margin-bottom: 0;
     color: #7ED676;
}


.cart .cart-header .cart-header__close {
    width: 22.5px;
    height: 22.5px;
    display: block;
    background: #F5F5F5;
    background-image: url(../images/cross.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 40%;
    margin-left: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart .cart-header .cart-header__close:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/*.cart .cart-header .cart-header__close:after {
    content: 'x';
}*/

.cart .cart-item {
    padding-top: var(--extrasmall);
    padding-bottom: var(--extrasmall);
    border-bottom: 2px solid #F3F3F3;
}

.cart .cart-item ul {
    margin-bottom: 0
}

.cart .cart-item ul li {
    list-style: none;
}

.cart .cart-item ul li:has(.btn) {
    margin-bottom: 5px
}

.cart .cart-item > :is(strong, b) {
        color: #7ED676;
}

.cart .cart-item h4 + .btn {
    margin-top: var(--extralarge)
}

.cart .cart-item .cart-item__header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: var(--extrasmall);
}

.cart .cart-item .cart-item__header .cart-item__image {
        position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background: #F3F3F3;
    width: 67.5px;
    border-radius: 5px;
    overflow: hidden;
    
}

.cart .cart-item .cart-item__header .cart-item__image img {
        position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.cart .cart-item .cart-item__header .cart-item__specs {
    text-align: right;
}

.cart .cart-item .cart-item__header .cart-item__price {
    font-weight: 600;
    font-family: 'Clash Display';
    margin-bottom: 7.5px
}

.cart .cart-item .cart-item__header .cart-item__edit {
    width: 22.5px;
    height: 22.5px;
    display: inline-block;
    background: #F5F5F5;
    background-image: url(../images/pencil.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    margin-left: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.cart .cart-item .cart-item__header .cart-item__remove {
    width: 22.5px;
    height: 22.5px;
    display: inline-block;
    background: #F5F5F5;
    background-image: url(../images/remove.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    margin-left: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    padding: 0;
    margin: 0;
}


.cart .cart-item .cart-item__header .cart-item__edit:hover,
.cart .cart-item .cart-item__header .cart-item__remove:hover {
     -webkit-transform: scale(1.1);
    transform: scale(1.1);
}


.cart .cart-footer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
        padding-top: var(--extrasmall);
}

.cart .cart-footer :is(b, strong) {
        font-weight: 600;
    font-family: 'Clash Display';
    font-size: 20px
}
 

.cart .cart-order {
    padding-top: var(--large)
}


.cart .cart-order label {
    font-weight: normal;
    margin-bottom: var(--extrasmall)
}

.cart .cart-order label:before {
       content: '';
    border: 2px solid #000000;
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: -1px;
    margin-right: 5px;
        border-radius: 2px;
        background-image: url(../images/check.svg);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.cart .cart-order label:has(input:checked):before {
    background-color: #000000;
}

.cart .cart-order label input {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}


/* Modal */

.modal-backdrop {
    background: rgb(0 0 0 / 50%);
}

.modal .modal-dialog {
    max-width: 920px;
}

.modal .modal-dialog .modal-content {
        padding: var(--medium) var(--largehuge);
    background: #FAFAFA;
    border-radius: 15px;
    border: 0;
}

.modal .modal-dialog .modal-content .modal-header {
    padding: 0;
    border-bottom: 0;
    border-radius: 0;
    margin-bottom: var(--small);
}

.modal .modal-dialog .modal-content .modal-header :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
    margin-bottom: 0
}

.modal .modal-dialog .modal-content .modal-header [data-dismiss="modal"] {
       margin: 0;
    padding: 0;
    font-size: 18px;
}

.modal .modal-dialog .modal-content .modal-header [data-dismiss="modal"]:after {
    content: '';
    width: 30px;
    height: 30px;
    background: #ffffff;
    background-image: url(../images/cross.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    margin-left: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    padding: 0;
    margin: 0;
    
    display: inline-block;
    vertical-align: middle;
    margin-left: 7.5px;
}

.modal .modal-dialog .modal-content .modal-header [data-dismiss="modal"]:hover:after {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.modal .modal-dialog .modal-content .modal-body {
   background: #ffffff;
    border: 2px solid #D9D9D9;
    border-radius: 15px;
    padding: var(--mediumlarge) var(--large);
}

.modal .modal-dialog .modal-content .modal-body + .modal-body  {
    margin-top: var(--mediumlarge);
}

/*.modal .modal-dialog .modal-content .modal-body > .row > [class*='col'] {
    margin-bottom: var(--small)
}

.modal .modal-dialog .modal-content .modal-body > .row > [class*='col'] *:last-child {
    margin-bottom: 0
}
*/
.modal .modal-dialog .modal-content .modal-body > .row > [class*='col'] img {
    line-height: 1;
    border-radius: 15px;
    overflow: hidden;
}

.modal .modal-dialog .modal-content .modal-body > .row > [class*='col'] img:nth-child(2) {
    margin-top: calc(var(--tiny) * 2);
    max-width: 50%;
}

.modal .modal-dialog .modal-content .modal-body > .row > [class*='col'] .row {
    line-height: 0
}

.modal .modal-dialog .modal-content .modal-body .modal-body__image {
    max-width: 510px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--small);
}

.modal .modal-dialog .modal-content .modal-footer {
    padding: 0;
    border-top: 0;
    border-radius: 0;
    margin-top: var(--small);
}

.modal .modal-dialog .modal-content .modal-footer .btn {
    margin: 0;
}

@media (max-width: 992px) {
  
    header nav.navigation .navigation-title:not([data-toggle="cart"]) {
        display: none;
    }
    
    .cart-toggler {
        width: 60px;
    }

    section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form [class*='col-']:not(:first-child) .input {
        margin-top: calc(var(--tiny)* 2);
    }

    section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form [class*='col-']:not(:first-child) .radio {
        margin-top: calc(var(--tiny)* 2);
    }

    section.promoplan .promoplan-item .promoplan-item__content .promoplan-item__form [class*='col-']:not(:first-child) .select {
        margin-top: calc(var(--tiny)* 2);
    }

    section.promoplan .promoplan-summary {
        position: relative;
        top: unset;
        border-radius: 15px;
        max-width: 100%;
        margin-top: var(--medium);
    }

    section.information .information-item [class*='col-']:not(:first-child) {
        margin-top: var(--medium)
    }

    footer [class*='col-']:not(:first-child) {
        margin-top: var(--medium)
    }
}   

@media (max-width: 576px) {

    .cart-toggler {
        width: 52.5px;
    }
    .cart {
        width: 100%;
        right: -100%;
    }
}
