
/* Cart Products */

.com-stionlinestore .cart .product {
    display: flex;
    align-items: center;
    gap: 20px;
    /*border: 1px solid red;*/
}
.com-stionlinestore .cart .product img {
    width: 80px;
    height: 80px;
}
.com-stionlinestore .cart .product .description {
    flex: 1;
}
.com-stionlinestore .cart .product .description a {
    font-size: 22px;
    font-weight: 600;
    color: #3e3e3e;
}
.com-stionlinestore .cart .product .parameters {
    align-self: flex-start;
    display: flex;
    gap: 16px;
}
.com-stionlinestore .cart .product .price {
    font-size: 22px;
    font-weight: 600;
    min-width: 120px;
    text-align: right;
}
.com-stionlinestore .cart .product .price span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #909090;
    text-decoration: line-through;
}
.com-stionlinestore .cart .product .actions .remove {
    cursor: pointer;
    font-size: 14px;
    color: #338adb;
}
.com-stionlinestore .cart .product .actions .remove:hover {
    text-decoration: underline;
}
.com-stionlinestore .cart hr {
    margin-top: 40px;
    margin-bottom: 40px;
}
.com-stionlinestore .cart .summary {
    display: flex;
    gap: 20px;
    align-items: center;
}
.com-stionlinestore .cart .summary .subtotal {
    flex: 1;
    text-align: right;
    font-size: 22px;
}
.com-stionlinestore .cart .summary .tile {
    width: 70px;
    height: 32px;
    text-align: center;
    font-weight: bold;
}
.com-stionlinestore .cart .summary .tile.active,
.com-stionlinestore .cart .summary .tile:hover {
    box-shadow: 0 0 0 3px #348adb;
}


/* Dropdown */

.com-stionlinestore .dropdown {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    user-select: none;
}
.com-stionlinestore .dropdown .label {
    font-size: 14px;
    color: #3e3e3e;
}
.com-stionlinestore .dropdown .selected {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    padding: 2px 8px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    min-width: 70px;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.15s;
    text-transform: uppercase;
}
.com-stionlinestore .dropdown .selected:hover {
    border-color: #348adb;
}
.com-stionlinestore .dropdown .arrow {
    font-size: 8px;
    color: #909090;
    transition: transform 0.15s;
}
.com-stionlinestore .dropdown.open .arrow {
    transform: rotate(180deg);
}
.com-stionlinestore .dropdown > .options {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 100;
    min-width: 100%;
    overflow: hidden;
    text-transform: uppercase;
}
.com-stionlinestore .dropdown.open > .options {
    display: block;
}
.com-stionlinestore .dropdown .option {
    padding: 4px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.1s;
    white-space: nowrap;
}
.com-stionlinestore .dropdown .option:hover {
    background: #f0f5ff;
}
.com-stionlinestore .dropdown .option.active {
    background: #e8f0fd;
    font-weight: 600;
}
.com-stionlinestore .dropdown .option .save {
    margin-left: 16px;
    font-size: 12px;
    font-weight: 400;
    color: #27ae60;
    text-transform: none;
}


/* Payments */

.com-stionlinestore .payments .tiles {
    flex-wrap: wrap;
    justify-content: normal;
    margin: 0 0 30px -5px;
    padding: 0 0 0 5px;
}
.com-stionlinestore .payments .tiles:last-child {
    margin-bottom: 0;
}
.com-stionlinestore .payments .tiles h2 {
    flex-basis: 100%;
    margin: 0 0 5px 0;
}
.com-stionlinestore .payments .tiles .tile {
    width: 120px;
    height: 70px;
    padding: 0;
    overflow: hidden;
}
.com-stionlinestore .payments .tiles .tile img {
    padding: 0;
}
.com-stionlinestore .payments .tiles .tile:not(.disabled):hover {
    box-shadow: 0 0 0 3px #348adb;
}
@media (max-width: 480px) {
    .com-stionlinestore .payments h2 {
        text-align: center;
    }
    .com-stionlinestore .payments .tiles {
        justify-content: center;
    }
}


/* Form */

.com-stionlinestore .quote {
	padding-left: 0;
	padding-right: 0;
}
.com-stionlinestore form {
    position: relative;
    width: 100%;
    padding: 40px;
    border: 8px solid #3498db;
    border-radius: 13px;
    background: #fff;
}
.com-stionlinestore form label {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    padding: 0 0 0 4px;
    margin: 0 0 5px 0;
    line-height: normal;
}
.com-stionlinestore form strong {
    color: red;
}
.com-stionlinestore form input[type="text"],
.com-stionlinestore form select {
    padding: 5px;
    border: 1px solid #c8c8c8;
    outline: none;
    font-size: 16px;
    height: 34px;
    color: #3e3e3e;
    background: transparent;
    margin-bottom: 15px;
}
.com-stionlinestore form input:focus {
    border-color: #3498db;
}
.com-stionlinestore form input.button {
    margin: 0 auto;
}
.com-stionlinestore form span {
    display: block;
    margin: 10px 0 30px 0;
}





/*.online-store.purchase {
    display: flex;
    flex-wrap: wrap;
}
.online-store.purchase.top {
    padding-bottom: 30px;
}
.online-store.purchase h1 {
    margin: 0;
}
.online-store.purchase.discount {
    padding-bottom: 30px;
}
.online-store.purchase .tiles {
    flex-wrap: wrap;
    flex-grow: 1;
    justify-content: normal;
    margin: 0 0 0 -5px;
    padding: 0 0 40px 0;
}
.online-store.purchase .tiles:last-child {
    flex-grow: 0;
}
.online-store.purchase .tile {
    width: 160px;
    height: 120px;
    margin: 5px;
    text-align: center;
}
.online-store.purchase .subscription .tile {
    width: 200px;
}
.online-store.purchase .subscription .tile > span {
    display: block;
    margin-top: -10px;
}
.online-store.purchase .subscription .tile > span .discount {
    color: #909090;
    text-decoration: line-through;
}
.online-store.purchase .tile > h3 {
    margin-bottom: 22px;
}
.online-store.purchase .tile h2 {
    font-size: 20px;
    overflow: visible;
}
.online-store.purchase .tile h2 .discount {
    display: block;
    margin-top: -10px;
    font-size: 16px;
    color: #909090;
    text-decoration: line-through;
}
@media (max-width: 860px) {
    .online-store.purchase:last-child {
        padding-bottom: 10px;
    }
}
@media (max-width: 480px) {
    .online-store.purchase .tiles {
        justify-content: center;
    }
    .online-store.purchase .button {
        width: 100%;
    }
}


/* --- Payments --- */

/*.online-store.payments .tiles {
    flex-wrap: wrap;
    justify-content: normal;
    margin: 0 0 30px -5px;
    padding: 0 0 0 5px;
}
.online-store.payments .tiles:last-child {
    margin-bottom: 0;
}
.online-store.payments .tiles h2 {
    flex-basis: 100%;
    margin: 0 0 15px 0;
}
.online-store.payments .tiles .tile {
    width: 120px;
    height: 70px;
    padding: 0;
    overflow: hidden;
}
.online-store.payments .tiles .tile img {
    padding: 0;
}
.online-store.payments .tiles .tile:not(.disabled):hover {
    box-shadow: 0 0 0 3px #3498db;
}
@media (max-width: 480px) {
    .online-store.payments h2 {
        text-align: center;
    }
    .online-store.payments .tiles {
        justify-content: center;
    }
}*/


/* Checkbox */
/*.online-store.form label.checkbox {
    display: block;
    position: relative;
    padding: 9px 0 0 30px;
    margin: -5px 0 15px 0;
    cursor: pointer;
    user-select: none;
    text-transform: none;
    font-size: 16px;
    max-width: 300px;
}
.online-store.form label.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.online-store.form label.checkbox span.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 21px;
    width: 21px;
    border: 1px solid #c8c8c8;
}
.online-store.form label.checkbox input:checked ~ .checkmark {
    background-color: #338adb;
    border: none;
}
.online-store.form label.checkbox span.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.online-store.form label.checkbox input:checked ~ .checkmark:after {
    display: block;
}
.online-store.form label.checkbox .checkmark:after {
    left: 7px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(43deg);
}


@media (max-width: 860px) {
    .online-store.form form {
        padding: 30px 20px;
    }
    .online-store.form input[type="text"],
    .online-store.form select,
    .online-store.form div.button {
        width: 100%;
    }
}

/* Google Captcha */

/*div.grecaptcha-badge {
    bottom: 75px !important;
}*/