:root {
    --main-color: #f70;
    --body-color: #333;
    --light-color: #f5f5f5;

    /* Colors */
    --danger: #c00000;
    --success: #00b459;

    /* Borders */
    --bdr-color: #ccc;
    --bdr-sec-color: #eee;
    --bdr-radius: 5px;

    /* Shadow */
    --box-shadow: 0 3px 20px rgba(0 0 0 / 5%);
    --card-shadow: 0 2px 2px rgba(0 0 0 / 2%);

    /* Transition */
    --main-transition: var(--main-transition);
}

html {
    font-size: 16px;
}

/* General */
body {
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased !important;
    -webkit-font-smoothing: subpixel-antialiased;

    /* -webkit-text-stroke: 0.25px; */

    /* -webkit-user-select: none; */

    /* -khtml-user-select: none; */

    /* -moz-user-select: none; */

    /* -o-user-select: none; */

    /* user-select: none; */
    cursor: default;
}

a {
    color: var(--main-color);
    text-decoration: none;
}

.text-accent {
    color: var(--main-color);
}

a:hover,
a:focus,
a:active {
    outline: none;
    color: #232323;
    text-decoration: none;
    transition: var(--main-transition);
}

b,
strong {
    font-weight: 600;
}

h4,
.h4 {
    font-size: 18px;
    line-height: 27px;
}

img {
    max-width: 100%;
}

hr {
    border-color: var(--bdr-color);
}

.bg-grey {
    background: #f4f5f6;
}

.p-top-80 {
    padding-top: 80px;
}

.p-30 {
    padding: 30px;
}

.m-bottom-15 {
    margin-bottom: 15px;
}

.m-bottom-30 {
    margin-bottom: 30px;
}

.m-bottom-60 {
    margin-bottom: 60px;
}

.m-top-15 {
    margin-top: 15px;
}

.m-top-30 {
    margin-top: 30px;
}

.m-top-60 {
    margin-top: 60px;
}

.v-top {
    vertical-align: top;
}

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

.m-left-10 {
    margin-left: 10px;
}

.m-right-10 {
    margin-right: 10px;
}

a .list-group {
    color: #232323;
}

a .list-group .list-group-item:hover {
    background: #fafbfc;
}

a .list-group .list-group-item.heading {
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    letter-spacing: .5px;
    background: #aaa;
}

.solutions-block {
    box-shadow: var(--box-shadow);
}

.solutions-block .list-group-item {
    border-left: 0;
    border-right: 0;
}

.solutions-block .list-group-item:last-child {
    border-bottom: 0;
}

/* Box */
.box {
    padding: 30px;
    text-align: center;
    border-radius: var(--bdr-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: .3s all;
}

.box.box-flex {
    display: flex;
    gap: 20px;
}

.box.box-border {
    box-shadow: none;
    border: 1px solid var(--bdr-sec-color);
}

.box.box-hover:hover {
    box-shadow: var(--box-shadow);
}

.box.box-grid-vertical {
    display: grid;
}

.box .icon {
    margin-bottom: 20px;
}

.box i {
    font-size: 2.5rem;
    color: var(--main-color);
}

.box .box-title.title-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.box .btn {
    display: inline-block;
    width: max-content;
    margin: auto;
}

.box p:last-child {
    margin-bottom: 0;
}

.no-wrap {
    white-space: nowrap !important;
}

.label-primary {
    background: var(--main-color);
}

.form-control {
    border-radius: 2px;
    box-shadow: none;
    border-color: #dedede;
    padding: 10px 12px;
    height: 42px;
    color: #212121;
    font-weight: 500;
}

.form-control:focus {
    border-color: #dedede;
    box-shadow: 0 0 6px rgb(0 0 0 / 15%);
}

.input-lg {
    border-radius: 4px;
}

.form-horizontal .control-label.required {
    position: relative;
}

.form-horizontal .control-label.required span.required {
    position: absolute;
    font-size: 21px;
    top: 10px;
    left: 5px;
}

.form-horizontal .control-label {
    text-align: left;
}

::input-placeholder {
    color: #ccc;
    font-weight: 400;
}

:placeholder { /* Firefox 18- */
    color: #ccc;
    font-weight: 400;
}

::placeholder {  /* Firefox 19+ */
    color: #ccc;
    font-weight: 400;
}

:input-placeholder {
    color: #ccc;
    font-weight: 400;
}

#login-form,
#recover-password-form,
#reset-password-form,
#contact-form,
#register-form .well,
#profile-form .well,
#password-form .well {
    box-shadow: 0 0 6px rgb(0 0 0 / 15%);
    padding: 30px;
    border: 1px solid #dedede;
    background: #fff;
    border-radius: 0;
}

#login-form .btn,
#recover-password-form .btn,
#reset-password-form .btn,
#contact-form .btn,
#profile-form .btn,
#register-form .btn,
#password-form .btn {
    padding: 10px 12px;
    font-weight: 500;
    text-transform: uppercase;
}

#profile-form .btn-primary,
#password-form .btn-primary {
    margin-left: 15px;
}

textarea.form-control {
    max-width: 100% !important;
    min-height: 150px;
}

.control-label {
    font-size: 13px;
    line-height: 14px;
    font-weight: 400;
}

.subscription,
.billing-method,
.help-video,
.order {
    padding: 15px;
    border-bottom: 1px solid #e1e2e3;
    position: relative;
}

.order {
    font-family: Lato, sans-serif;
}

.order-name * {
    font-size: 16px;
    font-weight: bold;
}

.order-info-date {
    font-size: 14px;
}

.order-details table {
    width: 100% !important;
    font-family: Lato, sans-serif;
}

.order-details table tr td {
    padding: 15px 8px;
}

.order-details tr.warning td {
    background: #414243 !important;
    color: #fff !important;
    border: none !important;
}

.order-details table a {
    color: var(--body-color);
}

.order-details table tr:hover a {
    color: #f80;
}

.order-details .well {
    font-family: Lato, sans-serif;
}

.order-details .well h2 {
    font-size: 24px;
    font-weight: bold;
}

.help-video {
    padding-right: 60px;
}

.subscription:hover,
.billing-method:hover,
.help-video:hover,
.order:hover {
    background: #f5f6f7;
}

.help-video .fa-play-circle {
    color: #787878;
    position: absolute;
    right: 15px;
    top: 23px;
}

.help-video .fa-play-circle:hover {
    color: var(--main-color);
}

.billing-method-info > *,
.subscription-info > * {
    font-family: Lato, sans-serif;
    color: #787878;
    font-size: 14px;
}

.subscription-name *,
.help-video .video-name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    font-family: Raleway, sans-serif;
    color: var(--body-color);
}

.billing-method-name * {
    font-family: Lato, sans-serif;
}

.billing-method img,
.billing-method-name img {
    max-width: 44px;
    margin: -5px 0 0 5px;
}

.subscription .actions .btn,
.billing-method .actions .btn {
    opacity: 0;
    text-transform: uppercase;
}

.subscription:hover .actions .btn,
.billing-method:hover .actions .btn {
    opacity: 1;
}

.billing-method-info .actions {
    text-transform: uppercase;
    font-size: 12px;
}

.billing-method-info .actions a:hover {
    color: var(--main-color);
}

.subscription-info .col-md-3 {
    padding-right: 15px !important;
}

.subscription-info-date .fa.text-success {
    font-size: 14px;
    color: var(--success);
}

.subscription-info-device .fa-mobile {
    font-size: 32px;
}

.subscription-info-device .fa-mobile.text-muted {
    color: #cacaca;
}

.subscription a {
    text-transform: uppercase;
}

.subscription .tooltip-inner {
    white-space: pre;
    max-width: none;
}

.subscription-details-container {
    font-family: Lato, sans-serif;
}

.subscription-details-container img {
    width: 60px;
    margin-left: -8px;
    margin-top: -4px;
}

.select2-drop.select2-drop-above,
.select2-container .select2-choices .select2-search-field input,
.select2-container .select2-choice,
.select2-container .select2-choices,
.select2-dropdown-open.select2-drop-above [class^="select2-choice"],
.select2-drop {
    border-radius: 2px !important;
}

.select2-container .select2-choice {
    height: 42px !important;
    line-height: 27px !important;
}

.select2-dropdown-open .select2-choice,
.select2-dropdown-open .select2-choices,
.select2-drop-auto-width,
.select2-drop.select2-drop-active,
.select2-container-active .select2-choice,
.select2-container-multi.select2-container-active .select2-choices,
.select2-container .select2-choices .select2-search-field input,
.select2-container .select2-choice,
.select2-container .select2-choices {
    border-color: #dedede !important;
    box-shadow: none !important;
}

.select2-results .select2-highlighted {
    background-color: var(--main-color);
}

.select2-container .select2-choices .select2-search-field input,
.select2-container .select2-choice,
.select2-container .select2-choices {
    font-family: Raleway !important;
}

#form-error {
    background: #fef5f1;
    color: #be2625;
    font-size: 13px;
}

.form-actions a:not(.btn),
.form-actions a:not(.btn) * {
    display: inline;
    color: #a6a7a8;
}

.form-actions a:not(.btn).text-primary,
.form-actions a:not(.btn).text-primary * {
    color: var(--main-color) !important;
}

form .form-actions {
    padding: 15px 0 0;
    margin: 30px 0 0;
    border-top: 1px solid #f1f2f3;
}

form .help-block.error {
    font-size: 10px;
    padding: 0 3px;
    background: #be2625 !important;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 600;
    position: absolute;
    margin: 0;
}

form .form-group {
    position: relative;
}

.nav-tabs {
    border: none;
}

.nav-tabs .nav-link {
    color: var(--body-color);
    border: none !important;
    border-radius: var(--bdr-radius);
    background-color: var(--bdr-sec-color);
    margin-right: 5px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    border-color: var(--bdr-sec-color);
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link,
.nav-link:hover,
.nav-link:focus {
    background-color: var(--main-color);
    color: #fff;
    border: none;
}

.nav-tabs .nav-link.active {
    font-weight: 600;
}

.nav-tabs li {
    text-align: center;
}

.tab-content {
    border: 1px solid var(--bdr-sec-color);
    border-radius: var(--bdr-radius);
    box-shadow: var(--card-shadow);
    padding: 25px;
    margin: 25px 0;
    position: relative;
}

.text-primary {
    color: var(--main-color) !important;
}

.text-danger {
    color: var(--danger);
}

.text-large {
    font-size: 150%;
    margin-bottom: 20px;
}

ul {
    padding-left: 22px;
}

/* Responsive Tables */
table th {
    font-weight: bold;
}

table td,
table th {
    padding: 9px 10px;
    text-align: left;
}

/* End Responsive Tables */

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
    font-size: 12px;
    text-transform: uppercase;
    color: #8a8a8a;
    margin: 30px 0;
}

.table-cell {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}

/* Real Person */
.realperson-challenge {
    display: block;
    color: #666;
    width: 100%;
    float: right;
}

.realperson-text {
    font-family: "Courier New", monospace;
    font-size: 5px;
    font-weight: bold;
    line-height: 3px;
    position: absolute;
    right: -165px;
    margin-top: 7px;
}

.realperson-regen {
    border: none;
    color: #f80;
    cursor: pointer;
    font-size: 28px;
    line-height: 32px;
    position: absolute;
    right: -30px;
    text-align: center;
    text-shadow: none;
    width: 34px;
    height: 34px;
    margin-left: 0;
}

.realperson-disabled {
    opacity: .5;
    filter: alpha(opacity=50);
}

.realperson-disabled .realperson-regen {
    cursor: default;
}

#register-form .realperson-text {
    right: -200px;
}

#register-form .realperson-regen {
    right: -60px;
}

.captcha-area .help-block.error,
.captcha-area .control-label {
    white-space: nowrap;
}

/* Buttons */
.btn {
    border-radius: var(--bdr-radius);
    font-weight: 400;
    outline: none !important;
}

.btn-lg {
    font-weight: bold;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--main-color);
    border-color: #f60;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-color: #f60;
    border-color: #f50;
    color: #fff;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary.focus[disabled],
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary.active[disabled],
fieldset[disabled] .btn-primary.active {
    background-color: #ffa04d;
    border-color: #ff9233;
}

.btn-primary .badge {
    background-color: #fff;
    color: var(--main-color);
}

.btn-outline-white {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white.focus,
.btn-outline-white:active,
.btn-outline-white.active,
.open > .dropdown-toggle.btn-outline-white {
    background-color: #fff;
    border-color: #fff;
    color: var(--body-color);
}

.btn-outline-white:active,
.btn-outline-white.active,
.open > .dropdown-toggle.btn-outline-white {
    background-image: none;
}

.btn-outline-white.disabled,
.btn-outline-white[disabled],
fieldset[disabled] .btn-outline-white,
.btn-outline-white.disabled:hover,
.btn-outline-white[disabled]:hover,
fieldset[disabled] .btn-outline-white:hover,
.btn-outline-white.disabled:focus,
.btn-outline-white[disabled]:focus,
fieldset[disabled] .btn-outline-white:focus,
.btn-outline-white.disabled.focus,
.btn-outline-white.focus[disabled],
fieldset[disabled] .btn-outline-white.focus,
.btn-outline-white.disabled:active,
.btn-outline-white[disabled]:active,
fieldset[disabled] .btn-outline-white:active,
.btn-outline-white.disabled.active,
.btn-outline-white.active[disabled],
fieldset[disabled] .btn-outline-white.active {
    background-color: transparent;
    border-color: #dedede;
}

.btn-outline-white .badge {
    background-color: #fff;
    color: var(--body-color);
}

.btn-outline-orange {
    background-color: transparent;
    border-color: var(--main-color);
    color: var(--main-color);
}

.btn-outline-orange:hover,
.btn-outline-orange:focus,
.btn-outline-orange.focus,
.btn-outline-orange:active,
.btn-outline-orange.active,
.open > .dropdown-toggle.btn-outline-orange {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.btn-outline-orange:active,
.btn-outline-orange.active,
.open > .dropdown-toggle.btn-outline-orange {
    background-image: var(--main-color);
}

.btn-outline-orange.disabled,
.btn-outline-orange[disabled],
fieldset[disabled] .btn-outline-orange,
.btn-outline-orange.disabled:hover,
.btn-outline-orange[disabled]:hover,
fieldset[disabled] .btn-outline-orange:hover,
.btn-outline-orange.disabled:focus,
.btn-outline-orange[disabled]:focus,
fieldset[disabled] .btn-outline-orange:focus,
.btn-outline-orange.disabled.focus,
.btn-outline-orange.focus[disabled],
fieldset[disabled] .btn-outline-orange.focus,
.btn-outline-orange.disabled:active,
.btn-outline-orange[disabled]:active,
fieldset[disabled] .btn-outline-orange:active,
.btn-outline-orange.disabled.active,
.btn-outline-orange.active[disabled],
fieldset[disabled] .btn-outline-orange.active {
    background-color: transparent;
    border-color: #ff9233;
}

.btn-outline-orange .badge {
    background-color: var(--main-color);
    color: #fff;
}

.page-title {
    background: url("/media/frontend/img/triangles.png") top center #f4f5f6 no-repeat;
    box-shadow: 0 0 10px rgb(0 0 0 / 25%) inset;
    background-size: 100% 100%;
    background-attachment: fixed;
    color: #fff;
    padding: 50px 0;
}

.page-title h1 {
    font-size: 21px;
    font-weight: 500;
    margin: 0;
}

h3 code {
    white-space: nowrap;
}

pre {
    background: #eef7fa;
    border: none;
    padding: 20px;
}

/* Navbar */
.navbar {
    background: #fff;
    border: none;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.navbar-brand {
    font-family: Lato, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    margin: 15px 15px 15px 0 !important;
    color: #303941 !important;
    font-weight: 900;
    text-transform: uppercase;
    overflow: hidden;
    padding-left: 0;
    transition: color .5s;
    transition: color .5s;
    font-size: 24px;
    outline: none;
}

.navbar-brand:hover {
    color: #1e1a1b;
}

.navbar-brand .reverse {
    color: var(--main-color);
    display: inline-block;
    position: relative;
    line-height: 25px;

    /* top: -1px; */
    transform: perspective(1000px) rotate3d(0, 1, 0, 180deg);
    transition: transform .3s, color .5s;
}

.navbar-brand:hover .reverse {
    color: #303941 !important;
    transform: perspective(1000px) rotate3d(0, 1, 0, 0deg);
}

.navbar-brand .box {
    font-size: 65%;
    border: 1px solid;
    color: var(--main-color);
    padding: 2px 6px;
    margin: 0 5px;
    border-radius: 1.5px;
    vertical-align: top;
    font-weight: 600;
}

.navbar-nav {

    /* padding-top: 15px; */
}

.navbar #pageSwitcher {
    border: none;
    font-size: 13px;
    line-height: 16px;
    color: #aaa;
    padding: 2px 6px;
}

.navbar #pageSwitcher:hover {
    color: #222528;
}

#main-nav {
    float: right;
}

#main-nav > ul {
    display: inline-block;

    /* height: 75px; */
}

#main-nav > ul > li {
    display: inline;
    position: relative;
    float: left;
}

#main-nav > ul > li::after {
    background: var(--main-color) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    display: block;
    height: 1.5px;
    left: 0;
    opacity: 0;
    position: absolute;
    transform: translateY(-15px);
    width: 100%;
}

#main-nav > ul > li.active::after,
#main-nav > ul > li:hover::after {
    opacity: 1;
    transform: translateY(-1px);
}

#main-nav > ul > li a {
    display: block;
    color: #232323;
    font-size: 14px;
    text-align: center;
    padding: 30px 15px;
}

#main-nav > ul > li.active > a,
#main-nav > ul > li > a:hover,
#main-nav > ul > li > a:focus {
    background: rgb(0 0 0 / 2%);
}

#main-nav > ul > .dropdown > .dropdown-menu {
    margin: 0;
    border-radius: 0;
    border: none;
}

#main-nav > ul > .dropdown > .dropdown-menu > li > a {
    text-align: left;
    padding: 15px;
}

#main-nav > ul li.dropdown:hover ul.dropdown-menu {
    display: block;
}

#main-nav .language-text {
    display: none;
}

#cart {
    position: fixed;
    top: 25%;
    right: -80px;
    margin: 0 !important;
    width: 80px;
    height: 80px;
    background: #3c4044;
    color: #fff;
    opacity: 1;
    border-radius: 2px 0 0 2px;
    transition: all ease .15s;
    z-index: 9999999;
    padding: 0;
}

#cart.visible {
    right: 0;
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    transition: all ease .15s;
}

#cart.blink {
    top: 24%;
    background: #222528;
}

#cart:hover,
#cart:focus,
#cart:active {
    background: #f80;
}

#cart i {
    color: rgb(255 255 255 / 20%);
    font-size: 48px;
    left: 0;
    line-height: 80px;
    margin: 0 !important;
    position: absolute;
    text-align: center;
    width: 80px;
    z-index: 99990;
}

#cart .badge {
    background: rgb(0 0 0 / 0%) none repeat scroll 0 0;
    color: #fff;
    text-shadow: 2px 2px 2px rgb(0 0 0 / 100%);
    font-family: Lato, sans-serif;
    font-size: 24px;
    font-weight: 900 !important;
    height: 80px;
    line-height: 80px;
    right: auto;
    width: 80px;
    z-index: 99999;
}

.flags {
    display: inline-block;
    padding: 0 !important;
    width: 22px;
    height: 14px;
    margin-bottom: 4px;
    vertical-align: middle;
    line-height: 40px;
    border-radius: 1px;
    outline: 2px solid rgb(0 0 0 / 10%);
    padding: 1px;
    background: url("/media/frontend/img/flags.png") no-repeat;
}

.flags.flag-en {
    background-position: -22px 0;
}

.flags.flag-ro {
    background-position: 0 -15px;
}

/* Sidebar layout */
.sidebar-nav .nav-list li a {
    padding: 16px 20px;
    color: #212121;
    border-radius: 4px 0 0 4px;
    font-size: 15px;
    text-transform: uppercase;
}

.sidebar-nav .nav-list li {
    border-radius: 4px 0 0 4px;
}

.sidebar-nav .nav-list li.active a {
    font-weight: bold;
    color: var(--main-color);
    background: #fff !important;
    border-radius: 4px 0 0 4px;
    border-top: 1px solid #e1e2e3;
    border-bottom: 1px solid #e1e2e3;
    border-left: 2px solid var(--main-color);
    border-radius: 4px 0 0 4px;
}

.sidebar-nav .nav-list li.active a::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 0;
    bottom: 0;
    height: auto;
    width: 4px;
    background: #fff;
    z-index: 999;
}

#tabs-nav > .col-sm-3 {
    padding-right: 0;
}

#tabs-container > .col-sm-9 {
    padding-left: 0;
}

#tabs-container > .col-sm-9 .container-fluid {
    padding: 0 30px;
    border-left: 1px solid #e1e2e3;
    margin-left: -1px;
    min-height: 320px;
}

#history .history-container {
    max-height: 200px;
    overflow: hidden auto;
    box-shadow: inset 0 0 4px rgb(0 0 0 / 10%);
    padding: 30px;
    border: 1px solid #e1e2e3;
}

.license-url {
    text-transform: none !important;
    font-weight: lighter !important;
    font-size: 13px !important;
}

.page-header {
    margin: 0 0 30px;
    border: none;
}

.page-header .fa {
    font-size: 21px;
}

.page-header .btn .fa {
    font-size: 18px !important;
    line-height: 21px !important;
    vertical-align: bottom !important;
}

.content {
    min-height: 800px;
}

/* Header */
.hero-unit {
    background: url("/media/frontend/img/hero-image.jpg") no-repeat;
    background-size: auto 100%;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    width: 100%;
    padding: 150px 0;
    overflow: hidden;
    text-align: center;
}

.hero-unit .overlay {
    background: rgb(0 15 19 / 70%);
    position: absolute;
    inset: 0;
}

#promobox {
    background: rgb(231 231 231 / 95%);
    background: var(--main-color);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 0 5px rgb(221 221 221 / 35%);
    padding: 20px 30px;
    margin-top: -40px;
    z-index: 1;
    border-radius: 3px;
    position: relative;
    display: block;
}

#promobox i {
    background: rgb(221 221 221 / 10%);
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    text-align: center;
    margin-top: -12px;
}

#promobox .promobox-text {
    font-size: 21px;
    font-weight: 600;
    margin: 10px 0;
}

.section {
    padding: 60px 0;
}

.thumbnail-lg {
    padding: 30px;
}

.jumbotron,
.well {
    background: #f4f5f6;
    box-shadow: none;
}

.jumbotron p {
    font-weight: normal;
}

.jumbotron .well {
    background: #fff;
    border: 1px solid #ccc;
    padding: 0 30px;
}

#why .jumbotron {
    background: #fff;
    border: 12px solid #f4f5f6;
    margin-bottom: 60px;
}

#why .jumbotron p {
    font-size: 16px;
}

#why .jumbotron .box i {
    font-size: 2rem;
}

.features .feature i {
    font-size: 32px;
    color: #aaa;
}

.features .row:not(:last-child) {
    margin-bottom: 25px;
}

.features .feature,
.features .box {
    height: 100%;
}

.features .feature:hover i {
    color: var(--main-color);
}

#how-to {
    padding: 100px 0;
    background: url("/media/frontend/img/2.jpg");
    background-size: cover;
    background-attachment: fixed;
}

#requirements .section.bg-grey .well {
    background: #fff;
}

table.how-it-works h3 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 0;
}

table.how-it-works hr {
    border-color: #f1f2f3;
}

table.how-it-works td {
    padding: 30px;
    color: #fff;
}

table.how-it-works .thumbnail {
    background: #fff;
    border: none;
    color: #323232;
    padding: 15px;
    border-radius: 0;
    margin: 30px 0 0;
    box-shadow: 0 0 4px rgb(0 0 0 / 10%);
}

table.how-it-works tr td:first-child {
    background: #f1f2f3;
    color: #323232;
    width: 70%;
}

table.how-it-works tr td:last-child {
    background: #e1e2e3;
    color: #323232;
}

.panel {
    position: relative;
    cursor: default;
}

/* Pricing */

/*
.nav.subscription-interval {
	text-align: center;
}
.nav.subscription-interval li {
	float: none;
	width: 200px;
	display: inline-block;
}
.nav.subscription-interval li > a,
.nav.subscription-interval li > .btn {
	border: 1px solid #CCC;
	color: #8a8a8a;
	text-decoration: none;
	width: 100%;
	box-shadow: none;
	background: none;
	font-weight: 400;
	display: block;
	padding: 10px 15px;
	position: relative;
	font-size: 16px;
}
.nav.subscription-interval li.active > a,
.nav.subscription-interval li > .btn.active {
	background-color: #ff8800;
	border: 1px solid #ff8800;
	color: #fff;
	text-decoration: none;
}
.nav.subscription-interval li > a small,
.nav.subscription-interval li > .btn small {
	font-family: "Lato", sans-serif;
}
.nav.subscription-interval li > a .fa,
.nav.subscription-interval li > .btn .fa {
	font-size: 21px;
	position: absolute;
	opacity: 0.35;
	right: 15px;
	top: 11px;
}
.tab-content.pricing {
	border: none;
	padding: 0;
}
*/

/* Accordions */
#faq-accordion .accordion-item:not(:last-child) {
    margin-bottom: 25px;
}

.accordion-item {
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color) !important;
    border-radius: var(--bs-accordion-border-radius);
    overflow: hidden;
    box-shadow: 0 1px 1px rgba(0 0 0 / 10%);
}

.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0;
    border-bottom: 1px solid transparent;
}

.accordion-button,
.accordion-button:not(.collapsed) {
    background-color: var(--light-color);
}

.accordion-button:not(.collapsed) {
    color: var(--main-color);
    font-weight: 600;
    border-bottom: 1px solid var(--bs-accordion-border-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    content: none;
}

.panel.pricing-table {
    font-family: Lato, sans-serif;
    font-size: 13px;
    cursor: pointer;
    cursor: hand;
    border-width: 2px;
    text-align: center;
    transition: var(--main-transition);
}

.panel.pricing-table:hover {
    box-shadow: 0 0 2px rgb(0 0 0 / 35%);
    margin-top: -15px;
    transition: var(--main-transition);
}

.panel.pricing-table:hover .panel-body img {
    margin-bottom: 15px;
    transition: var(--main-transition);
}

.panel.pricing-table:hover .panel-body {
    background: #f5f5f5;
    padding-bottom: 20px;
    transition: var(--main-transition);
}

.panel.pricing-table:hover .panel-heading {
    background: #ececec;
    transition: var(--main-transition);
}

.panel.pricing-table h5 {
    font-size: 18px;
    font-family: Raleway, sans-serif;
}

.panel.pricing-table h5 b {
    font-family: lato, sans-serif;
}

.panel.pricing-table:hover .panel-body .btn {
    margin-top: 15px;
    transition: var(--main-transition);
}

.panel.pricing-table .panel-body .btn,
.panel.pricing-table .panel-body img {
    transition: var(--main-transition);
    font-family: Raleway, sans-serif;
}

.panel.pricing-table.featured {
    margin-top: -15px;
}

.panel.pricing-table.featured .panel-heading {
    background: #ececec;
}

.panel.pricing-table.featured .panel-body {
    background: #f5f5f5;
    padding-bottom: 20px;
}

.panel.pricing-table.featured .panel-body img {
    margin-bottom: 15px;
}

.panel.pricing-table.featured .panel-body .btn {
    margin-top: 15px;
}

.panel .panel-heading {
    padding: 15px 30px;
    position: relative;
    transition: var(--main-transition);
}

.panel .panel-heading .panel-title {
    padding-right: 20px;
}

.panel.pricing-table .panel-heading {
    height: 160px;
    display: table;
    width: 100%;
    padding: 10px 30px 30px;
    transition: var(--main-transition);
}

#accordion .panel-heading {
    cursor: pointer;
}

.panel.pricing-table .panel-heading s {
    color: #aaa;
}

.panel .panel-footer {
    background: none;
    padding: 30px;
}

.panel .panel-body {
    padding: 20px 30px;
    transition: var(--main-transition);
    transition: var(--main-transition);
    transition: var(--main-transition);
    transition: var(--main-transition);
}

.panel .panel-body img {
    margin-top: -50px;
    position: relative;
}

.panel.pricing-table [class*="price"] {
    font-size: 21px;
    line-height: 24px;
    font-weight: 400;
    font-family: Lato, sans-serif;
}

.price > sup,
.special-price > sup {
    font-size: 60%;
}

.panel.pricing-table [class*="price"] small,
.panel.add-on .price.text-muted {
    font-size: 16px;
    color: #f80;
}

.panel.pricing-table [class*="price"] small::before,
.panel.add-on .price.text-muted::before {
    content: " ( ";
}

.panel.pricing-table [class*="price"] small::after,
.panel.add-on .price.text-muted::after {
    content: " ) ";
}

.panel.pricing-table [class*="price"] small > sup {
    top: -5px;
}

/* .panel.pricing-table .special-price {
	font-size: 21px;
	font-weight: bold;
} */
.panel .panel-heading h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: Raleway, sans-serif;
}

.panel .panel-heading .icon {
    margin-top: -13px;
    position: absolute;
    right: 15px;
    top: 50%;
}

.panel .panel-heading .fa {
    font-size: 36px;
    color: #aaa;
}

.panel .panel-heading .text-primary {
    opacity: 1;
    transition: opacity ease .25s;
    transition: opacity ease .25s;
    transition: opacity ease .25s;
    transition: opacity ease .25s;
}

.panel .panel-heading:hover .fa-question-circle {
    color: var(--main-color);
}

.panel.pricing-table:hover,
.panel.add-on:hover {
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.panel.add-on:hover .panel-heading {
    background: #fefefe;
}

.panel.add-on [aria-expanded="true"] .text-primary {
    opacity: 0;
}

.panel.add-on {
    cursor: pointer;
    cursor: hand;
    margin: 15px 0;
}

.panel.add-on .fa {
    float: right;
    clear: both;
    margin-top: -30px;
}

.panel.add-on table {
    width: 100%;
}

.panel.add-on .panel-heading {
    padding: 30px;
}

.panel.add-on .panel-title {
    margin-bottom: 5px;
    width: calc(100% - 40px);
}

.panel.add-on .panel-body {
    padding: 15px 25px;
    font-size: 13px;
}

.panel.add-on .price {
    font-size: 15px;
    font-family: Lato, sans-serif;
    white-space: nowrap;
}

.panel.add-on h3 {
    font-size: 13px;
    line-height: 16px;
    margin: 0;
}

/* reset certain elements (in case of conflicting CSS for classes, links, etc.) */
.ribbon {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.ribbon-horizontal {
    right: auto;
    left: -6px;
    top: -10px;
    border-radius: 1px 1px 1px 0;
}

.ribbon .text,
.ribbon .banner,
.ribbon a {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

.ribbon a {
    color: #fff;
    text-decoration: none;
}

.ribbon .banner {
    transform: rotate(45deg);
    color: #fff;
    -webkit-font-smoothing: antialiased;
    display: block;
    float: right;
    position: relative;
    right: -9px;
    top: 21px;
    width: 90px;
}

.ribbon-horizontal .banner {
    transform: none;
    left: -5px;
    top: -10px;
}

.ribbon .banner::after,
.ribbon .banner::before {
    content: "";
    display: block;
    height: 6px;
    position: absolute;
    width: 25px;
}

.ribbon .banner::before {
    transform: skewY(-45deg) translate(50%, 15px);
    transform-origin: 100% center;
    left: -39px;
}

.ribbon .banner::after {
    transform: translate(100%, -100%) skewY(45deg) translateX(-90%);
    transform-origin: 0 center;
    right: -23px;
}

.ribbon-horizontal .banner::after,
.ribbon-horizontal .banner::before {
    display: none;
}

.ribbon-horizontal .banner::before {
    content: "";
    border-top: 3px solid #367c36;
    border-left: 3px solid transparent;
    border-right: 3px solid #367c36;
    border-bottom: 3px solid transparent;
    background: none !important;
    display: block;
    position: absolute;
    left: 0;
    bottom: -6px;
    transform: none;
    width: 3px;
    height: 3px;
}

.ribbon .text {
    position: relative;
    z-index: 2;
    padding: 6px 0;
    font-size: 11px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    min-height: 18px;
    line-height: 18px;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 20%);
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ribbon .text::before,
.ribbon .text::after {
    content: "";
    display: block;
    height: 25px;
    position: absolute;
    top: 2px;
    width: 100%;
    z-index: -1;
}

.ribbon .text::before {
    transform: translateX(-15%) skewX(-45deg);
}

.ribbon .text::after {
    transform: translateX(15%) skewX(45deg);
}

.ribbon-horizontal .banner {
    width: 90px;
    position: static;
}

.ribbon-horizontal .text {
    padding: 2px 0;
}

.ribbon-horizontal .text::before,
.ribbon-horizontal .text::after {
    transform: none;
    display: none;
}

/* green */
.ribbon-green .banner::after,
.ribbon-green .banner::before {
    background-color: #367c36;
}

.ribbon-horizontal.ribbon-green,
.ribbon-green .text::before,
.ribbon-green .text::after {
    background-color: #5cb85c;
}

.special-offer {
    background: var(--main-color);
    color: #fff;
    padding: 5px 10px;
    display: inline-block;
    margin: auto;
    font-size: 11px;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 20%);
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 3px 3px 0 0;
}

/* CAROUSEL */
.carousel-control {
    color: #fff;
    text-shadow: none;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
    font-size: 21px;
    line-height: 42px;
    display: inline-block;
    width: 42px;
    height: 42px;
    background: #3c4044;
    border-radius: 4px;
    text-align: center;
}

.carousel-control.left {
    background-image: none;
    right: auto;
    left: -120px;
}

.carousel-control.right {
    background-image: none;
    left: auto;
    right: -120px;
}

.carousel-control:hover,
.carousel-control:focus {
    opacity: .9;
    outline: 0 none;
    text-decoration: none;
}

.carousel-caption {
    background: rgb(0 0 0 / 45%);
    bottom: 0;
    color: #fff;
    left: 0;
    padding: 15px;
    position: absolute;
    right: 0;
    text-align: center;

    /* text-shadow: none; */
    z-index: 10;
}

.carousel-inner > .item {
    margin-top: 30px;
    padding-top: 10px;
}
.carousel-inner .active.left { left: -33%; }
.carousel-inner .next { left: 33%; }
.carousel-inner .prev { left: -33%; }

.carousel-control.left,
.carousel-control.right { background-image: none; }
.item:not(.prev) { visibility: visible; }
.item.right:not(.prev) { visibility: hidden; }
.rightest { visibility: visible; }

@media (width <= 1199px) {
    .carousel-inner .active.left { left: -50%; }
    .carousel-inner .next { left: 50%; }
    .carousel-inner .prev { left: -50%; }
    .carousel-inner .active > div { display: none; }
    .carousel-inner .active > div:first-child { display: block; }
    .carousel-inner .active > div:first-child + div { display: block; }
    .carousel-control.left { left: -120px; }
    .carousel-control.right { right: -120px; }

    .carousel-control .icon-prev,
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-next,
    .carousel-control .glyphicon-chevron-right {
        position: static;
        margin: 0;
    }

    .carousel-control.left {
        text-align: right;
        padding-right: 5px;
    }

    .carousel-control.right {
        text-align: left;
        padding-left: 5px;
    }

    .carousel-control {
        position: static;
        width: 50%;
        float: left;
    }
}
@media (width <= 767px) {
    .carousel-inner .active.left { left: -100%; }
    .carousel-inner .next { left: 100%; }
    .carousel-inner .prev { left: -100%; }
    .carousel-inner .active > div { display: none; }
    .carousel-inner .active > div:first-child { display: none; }
    .carousel-inner .active > div:first-child + div { display: block; }

    .carousel-control .icon-prev,
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-next,
    .carousel-control .glyphicon-chevron-right {
        position: static;
        margin: 0;
    }

    .panel.add-on {
        margin-top: 0;
        margin-bottom: 30px;
    }
}

/* Cart - checkout */
.cart-index h2 {

    /* text-align: left; */
}

.cart-index .subscription-interval {

    /* float: right; */
}

#cart-overview {
    box-shadow: none;
    transition: var(--main-transition);
    transition: var(--main-transition);
    transition: var(--main-transition);
    transition: var(--main-transition);
}

#cart-overview.blink .cart-overview-container {
    box-shadow: inset 0 0 15px 10px rgb(0 0 0 / 15%);
}

.subtotal {
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    padding-top: 5px;
}

.subscriptions-list-container,
.products-list-container,
.cart-overview-container {
    padding: 15px;
    border: 1px solid #dedede;
    border-radius: 2px;
    box-shadow: none;
    transition: var(--main-transition);
    transition: var(--main-transition);
    transition: var(--main-transition);
    transition: var(--main-transition);
}

.subscriptions-list-container.blink {
    box-shadow: inset 0 0 15px 10px rgb(0 0 0 / 15%);
    background: #f1f2f3;
}

.subscriptions-list-container .subscription,
.products-list-container .product,
.cart-overview-container .subscription,
.cart-overview-container .product {
    background-color: #f1f2f3;
    border: 1px solid #dedede;
    border-radius: 2px;
    color: #313233;
    padding: 10px 0;
    cursor: pointer;
    cursor: hand;
    position: relative;
    box-shadow: 1px 1px 1px rgb(0 0 0 / 10%);
    border-radius: 2px;
}

.cart-overview-container {
    background: #e1e2e3;
    border: 1px solid #d1d2d3;
    margin-bottom: 60px;
    padding: 30px;
}

.cart-overview-container h3 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    font-size: 16px;
    position: relative;
}

.cart-overview-container h3 .fa {
    font-size: 21px;
    margin-right: 15px;
    color: #fff;
    background: #f80;
    padding: 20px 10px;
    top: -37px;
    left: 0;
    position: absolute;
    border-radius: 0 2px 2px;
    text-shadow: 0 0 2px rgb(0 0 0 / 35%);
}

.cart-overview-container h3::before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: -37px;
    left: -6px;
    border-top: 3px solid transparent;
    border-left: 3px solid transparent;
    border-right: 3px solid #cc6d00;
    border-bottom: 3px solid #cc6d00;
}

.cart-overview-container .subscription,
.cart-overview-container .product {
    background-color: #fff;
    border-color: #d1d2d3;
    box-shadow: 1px 1px 1px rgb(0 0 0 / 15%);
    border-radius: 2px;
}

#cart-overview .btn {
    font-size: 16px;
}

.subscriptions-list-container .subscription + .subscription,
.products-list-container .product + .product,
.cart-overview-container .subscription + .subscription,
.cart-overview-container .product + .product {
    margin-top: 10px;
}

.subscriptions-list-container .subscription > .add-to-cart,
.products-list-container .product > .add-to-cart {
    position: absolute;
    color: #aaa;
    right: 0;
    font-size: 81px;
    font-weight: lighter;
    top: 0;
    line-height: 81px;
    width: 60px;
    text-align: center;
    user-select: none;  /* Chrome all / Safari all */
    user-select: none;	 /* Firefox all */
    user-select: none;	  /* IE 10+ */
    user-select: none;		  /* Likely future */
}

.subscriptions-list-container .subscription > .add-to-cart:hover,
.products-list-container .product > .add-to-cart:hover {
    color: #f80;
}

.subscriptions-list-container .subscription .subscription-info,
.products-list-container .product .product-info {
    width: calc(100% - 180px);
    display: inline-block;
    padding: 0 15px;
}

.subscriptions-list-container .subscription .subscription-info .subscription-name,
.products-list-container .product .product-info .product-name {
    font-weight: bold;
    font-size: 16px;
    font-family: Raleway, sans-serif;
}

.cart-overview-container .subscription .subscription-info .subscription-name,
.cart-overview-container .product .product-info .product-name {
    font-weight: bold;
    font-size: 14px;
    font-family: Raleway, sans-serif;
}

.subscriptions-list-container .subscription .subscription-info .subscription-description,
.products-list-container .product .product-info .product-description,
.cart-overview-container .subscription .subscription-info .subscription-description,
.cart-overview-container .product .product-info .product-description {
    font-size: 13px;
}

.subscriptions-list-container .subscription .subscription-price,
.products-list-container .product .product-price {
    width: 120px;
    font-size: 16px;
    font-weight: 400;
    text-align: right;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    font-family: Lato, sans-serif;
    margin-top: 10px;
}

.cart-overview-container .subscription .subscription-quantity,
.cart-overview-container .product .product-quantity {
    display: inline-block;
    font-family: Lato, sans-serif;
    vertical-align: top;
    font-size: 14px;
}

.cart-overview-container .subscription .quantity,
.cart-overview-container .product .quantity {
    display: inline-block;
    width: 15px;
    text-align: center;
}

.subscriptions-list-container .subscription .subscription-price small,
.products-list-container .product .product-price small {
    display: block;
    font-size: 13px;
    color: #aaa;
    font-weight: normal;
}

.subscriptions-list-container .subscription .subscription-status {
    width: 60px;
    text-align: right;
    display: inline-block;
    font-size: 90px;
    font-weight: 100;
    line-height: 45px;
    vertical-align: top;
    color: #ccc;
}

.cart-overview-container .subscription .subscription-info,
.cart-overview-container .product .product-info {
    width: calc(100% - 240px);
    display: inline-block;
    padding: 0 15px;
}

.cart-overview-container .subscription .subscription-price,
.cart-overview-container .product .product-price {
    font-family: Lato, sans-serif;
    font-size: 14px;
    color: #6a6a6a;
}

.cart-overview-container .subscription .subscription-quantity,
.cart-overview-container .product .product-quantity {
    width: 95px;
}

.cart-overview-container .subscription .subscription-subtotal,
.cart-overview-container .product .product-subtotal {
    font-size: 16px;
    line-height: 21px;
    text-align: right;
    font-family: Lato, sans-serif;
    vertical-align: top;
    display: inline-block;
}

.cart-overview-container .subscription .subscription-subtotal,
.cart-overview-container .product .product-subtotal {
    width: 120px;
}

.cart-index .cart-overview-container .subscription .subscription-subtotal,
.cart-index .cart-overview-container .product .product-subtotal {
    width: 100px;
}

.product-subtotal small:first-child,
.subscription-subtotal small:first-child {
    font-size: 12px;
    color: #878787;
    line-height: 24px;
    vertical-align: top;
    margin-right: 10px;
}

.cart-overview-container .remove-from-cart {
    font-size: 32px;
    line-height: 32px;
    position: absolute;
    top: 2px;
    right: 10px;
    color: #aaa;
    user-select: none;  /* Chrome all / Safari all */
    user-select: none;	 /* Firefox all */
    user-select: none;	  /* IE 10+ */
    user-select: none;		  /* Likely future */
}

.cart-overview-container .remove-from-cart:hover {
    color: #b80000;
}

.cart-overview-container .total {
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    line-height: 42px;
    background: #3c4044;
    margin: 30px -35px -35px;
    padding: 30px;
}

.cart-overview-container .total .btn {
    font-family: Lato, sans-serif;
    text-transform: uppercase;
    letter-spacing: .25px;
    font-weight: 900;
}

.cart-overview-container .total .btn .fa {
    margin-left: 12px;
}

.quantity-wrapper .add-up {
    margin-left: 5px;
}

.quantity-wrapper .add-down {
    margin-right: 5px;
}

.payment-option {
    margin: 20px 0;
}

.payment-option .label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 5px;
}

.cart-order-subscriptions .unit,
.cart-order-products .unit,
.cart-overview-container .subscription-subtotal .unit {
    font-size: 14px;
    display: block;
}

/* Cart: Subscription billing interval */
.subscription-billing-interval {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

input[type="radio"] {
    display: none;
}

input[type="radio"] + label {
    font-weight: 400;
    font-size: 14px;
}

input[type="radio"] + label span {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: -2px 10px 0 0;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
    border-radius: 50%;
    border: 3px solid #fff;
}

input[type="radio"] + label span {
    background-color: #fff;
}

input[type="radio"]:checked + label {
    color: var(--body-color);
    font-weight: 700;
}

input[type="radio"]:checked + label span {
    background-color: #f80;
    border: 2px solid #fff;
    box-shadow: 2px 2px 2px rgb(0 0 0 / 10%);
}

input[type="radio"] + label span,
input[type="radio"]:checked + label span {
    transition: background-color .24s linear;
    transition: background-color .24s linear;
    transition: background-color .24s linear;
    transition: background-color .24s linear;
}

/* Checkout: Payment method */
.payment-method .panel {
    border: 1px solid #e1e2e3;
    border-radius: 4px !important;
    overflow: hidden;
    box-shadow: none;
    margin-top: 15px !important;
}

.payment-method .panel .panel-heading {
    padding: 0;
}

.payment-method .panel .panel-heading a {
    color: var(--body-color);
    font-weight: bold;
    padding: 10px 15px;
    display: block;
}

.payment-method .panel .panel-heading a > .fa {
    vertical-align: middle;
    margin-right: 15px;
    font-size: 21px;
}

.payment-method .panel-heading a[aria-expanded="true"] {
    background-color: #f1f2f3;
}

.payment-method [aria-expanded="true"] {
    border: none;
}

.payment-method .panel .panel-body {
    padding: 20px;
    background: #f1f2f3;
}

.payment-method .panel .panel-body .actions {
    font-weight: bold;
    line-height: 42px;
}

.payment-method .panel .panel-heading img {
    max-width: 46px;
}

.payment-method .panel .btn-group {
    margin: 0 auto;
    width: 100%;
}

#braintree-select-form .btn-group .btn {
    font-family: Lato, sans-serif;
    font-size: 16px;
    line-height: 45px;
    background: none;
    text-align: left;
    border-radius: 0;
    margin: 0;
    border: none;
    border-bottom: 1px solid #e1e2e3;
    padding: 0 15px;
    color: #414243;
}

#braintree-select-form .btn-group .btn:hover,
#braintree-select-form .btn-group .btn:focus,
#braintree-select-form .btn-group .btn:active,
#braintree-select-form .btn-group .btn.active {
    background: none;
    line-height: 45px;
    font-weight: bold;
    box-shadow: none;
    color: #000;
    transition: all .14s linear;
    transition: all .14s linear;
    transition: all .14s linear;
    transition: all .14s linear;
}

#braintree-select-form .btn-group .btn.active {
    background: #fff;
    box-shadow: 0 0 3px rgb(0 0 0 / 15%);
}

#braintree-select-form .btn-group .btn .fa {
    font-size: 18px !important;
    margin-right: 5px;
    color: #aaa;
    transition: all .14s linear;
    transition: all .14s linear;
    transition: all .14s linear;
    transition: all .14s linear;
}

#braintree-select-form .btn-group .btn.active .fa {
    color: #f80;
}

#braintree-select-form .btn-group .btn img {
    max-width: 60px;
    margin: 0;
    position: absolute;
    right: 10px;
    top: 7px;
    opacity: .5;
    transition: all .14s linear;
    transition: all .14s linear;
    transition: all .14s linear;
    transition: all .14s linear;
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
}

#braintree-select-form .btn-group .btn:hover img,
#braintree-select-form .btn-group .btn:focus img,
#braintree-select-form .btn-group .btn:active img,
#braintree-select-form .btn-group .btn.active img {
    opacity: 1;
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
}

.braintree-hosted-fields-focused {
    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
}

.braintree-hosted-fields-invalid {
    border: 1px solid #be2625 !important;
    box-shadow: inset 0 0 4px #be2625;
}

.cart-checkout .alert {
    position: relative;
}

.cart-checkout .alert h2 {
    font-size: 21px;
    font-weight: 800;
}

.cart-checkout .alert h2 i {
    margin-right: 10px;
    border-radius: 18px;
}

#braintree-card-number,
#braintree-card-cvv,
#braintree-card-expiration-month,
#braintree-card-expiration-year,
#braintree-card-expiration-date {
    height: 40px;
    background: #fff;
    padding: 5px 10px;
    border: 1px solid #e1e2e3;
}

#braintree-card-form label {
    font-size: 12px;
    font-weight: 500;

    /* white-space: nowrap; */
}

#braintree-card-form label .fa {
    margin-left: 5px;
    font-size: 14px;
    color: #aaa;
}

#braintree-card-form label img {
    bottom: -50px;
    left: 0;
    margin: 0 !important;
    max-width: 200px !important;
    position: absolute !important;
    width: 100% !important;
    z-index: 100;
    display: none;
    box-shadow: 2px 2px 2px rgb(0 0 0 / 15%);
}

#braintree-card-form label:hover img {
    display: block;
}

#braintree-card-form label .fa:hover {
    color: var(--main-color);
}

.braintree-hosted-fields-valid {
    position: relative;
}

.braintree-hosted-fields-valid::after {
    content: "\f00c";
    position: absolute;
    top: 10px;
    right: 10px;
    color: #5cb85c;
    font-family: FontAwesome;
    font-size: 14px;
}

.number {
    font-family: monospace;
    font-size: 14px !important;
    font-weight: bold;
}

@media (width <= 480px) {
    .payment-method .panel .panel-body {
        padding: 15px 15px 20px;
    }

    .payment-method img {
        max-width: 45px;
        margin: 0 -7px !important;
    }

    #braintree-card-form label {
        line-height: 14px;
        height: 28px !important;
        display: table-cell;
        vertical-align: bottom;
        padding-bottom: 3px;
    }

    .payment-method .panel .panel-heading a {
        font-size: 14px;
    }

    #braintree-card-number,
    #braintree-card-cvv,
    #braintree-card-expiration-month,
    #braintree-card-expiration-year,
    #braintree-card-expiration-date {
        padding: 5px 10px;
    }

    .cart-overview-container .total {
        margin: 30px -20px -35px;
    }

    #braintree-card-form .row > .col-xs-8 {
        width: 100%;
    }
}

.checkout-steps {
    margin-bottom: 60px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 30px;
}

.checkout-steps h2 {
    margin: 0;
    font-size: 21px;
}

.checkout-steps .step {
    color: #ccc;
    text-align: center;
    display: inline-block;
    width: 50px;
    vertical-align: top;
    margin: 0 10px;
    position: relative;
    z-index: 1;
}

.checkout-steps .step + .step::before {
    width: 30px;
    height: 1px;
    position: absolute;
    right: 48px;
    top: 10px;
    background: #dedede;
    content: "";
    z-index: -1;
}

.checkout-steps .step.active {
    color: #232323;
}

.checkout-steps .step > .fa {
    background: #fff;
    text-align: center;
    font-size: 21px;
    width: 20px;
}

.checkout-steps .step > div {
    font-size: 11px;
    line-height: 12px;
    margin-top: 3px;
}

.dynamic-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    font-size: 10px;
    height: 22px;
    position: relative;
    user-select: none;
    user-select: none;
    user-select: none;
    user-select: none;
    width: 22px;
    -webkit-tap-highlight-color: transparent;
}

.dynamic-icon span {
    background: var(--main-color);
    border-radius: 2px;
    height: 2px;
    position: absolute;
    transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    left: 0;
}

.accordion-button:not(.collapsed) .dynamic-icon span {
    background: #c1c1c1;
}

.dynamic-icon span:nth-child(1) {
    top: 12px;
}

.dynamic-icon span:nth-child(2) {
    transform: rotate(90deg);
    transform: rotate(90deg);
    transform: rotate(90deg);
    top: 12px;
}

.accordion-button:not(.collapsed) .dynamic-icon span:nth-child(2) {
    transform: rotate(0deg);
    transform: rotate(0deg);
    transform: rotate(0deg);
}

.contact-info {
    font-size: 14px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li .label {
    display: block;
    background: none;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    color: #aaa;
    padding: 0;
    border-radius: 0;
    margin: 20px 0 3px;
    text-transform: uppercase;
}

.contact-info a {
    color: #323232;
    font-weight: 800;
}

#contact-form-container img {
    margin: auto;
}

#contact-form .form-actions {
    margin: 15px 0 0;
    text-align: right;
}

#cart-order-overview a {
    font-size: 14px;
}

#cart-order-overview a .fa {
    margin-right: 5px;
}

/* Subscription page */
.card {
    height: 100%;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--bdr-sec-color) !important;
    padding: 20px 25px;
}

.row-summary .card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    border: none;
    padding: 0;
}

.row-summary .card .card-header .label {
    display: flex;
    align-items: center;
    color: var(--body-accent-color);
    margin-bottom: 0;
    font-weight: 500;
}

.row-summary .card .card-header .label i {
    color: var(--main-color);
    font-size: 1.5rem;
    margin-right: 10px;
}

.row-summary .card .card-header i {
    margin: 0;
    color: var(--main-color);
}

.row-summary .card .card-body {
    margin-top: 25px;
    padding: 0;
}

.row-summary .card .card-body .value {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 600;
}

.row-summary .card .card-body .sub-value {
    margin-bottom: 0;
}

.row-summary .card .card-body .sub-value i {
    font-size: .9rem;
    margin-right: 5px;
}

.subscription-register {
    display: grid;
    grid-template-rows: 1fr auto;
    align-content: space-between;
    min-height: 100vh;
}

.subscription-register-page .card {
    min-width: 600px;
    min-height: 100%;
}

.subscription-overview-page .page-title {
    text-align: center;
}

.subscription-overview-page .title {
    font-size: 2.5rem;
}

.subscription-overview-page .subtitle {
    font-size: 1.6rem;
}

.subscription-overview-page .row-summary .card .card-header .icon i {
    font-size: 1.2rem;
}

.subscription-overview-page .row-summary .card .card-header .actions i {
    font-size: 1.2rem;
    cursor: pointer;
}

.subscription-overview-page .row-summary .card .card-body .value {
    font-size: 1rem;
}

.subscription-overview-page .tab-pane .card {
    display: block;
}

.subscription-overview-page .card {
    border-color: var(--bdr-sec-color);
}

.subscription-overview-page .section-steps .section-step:not(:last-child) {
    margin-bottom: 40px;
}

.subscription-overview-page .flex-images {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.subscription-overview-page .image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.subscription-overview-page .image-gallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subscription-overview-page #mobile-installation img {
    display: block;
    width: 300px;
}

/* Error page */
body.guest {
    background: #303941 none repeat scroll 0 0;
}

body.guest .navbar-brand {
    color: var(--main-color) !important;
    float: none;
}

body.guest .navbar-brand .reverse,
body.guest .navbar-brand .box {
    color: #fff !important;
}

.site-error .jumbotron {
    box-shadow: 0 0 12px rgb(0 0 0 / 50%);
    margin: 60px auto;
    background: #fff;
}

.site-error .jumbotron p {

    /* font-size: 17px; */

    /* line-height: 21px; */
}

.site-error .jumbotron h1 {
    font-size: 220px;
    line-height: 220px;
    font-weight: lighter;
}

.site-error .jumbotron h2 {
    font-weight: lighter;
}

.site-error .jumbotron blockquote {
    margin: 0;
}

.text-info {
    font-weight: 600;
}

/* .site-page h2 {
    margin: 60px 0 20px;
    border-bottom: 1px solid #f1f2f3;
    padding-bottom: 15px;
} */

.ui-pnotify .alert {
    background: rgb(0 0 0 / 90%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 2px !important;
    box-shadow: none;
    padding: 20px 20px 20px 60px;
}

.ui-pnotify-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    margin-top: -20px;
    font-size: 40px;
    line-height: 40px;
    color: rgb(255 255 255 / 35%);
}

.ui-pnotify .alert-warning {
    background: rgb(255 180 60 / 90%) none repeat scroll 0 0 !important;
}

.ui-pnotify .alert-danger,
.ui-pnotify .alert-error {
    background: rgb(210 0 0 / 90%) none repeat scroll !important;
}

/* Footer */
footer {
    font-size: 14px;
}

footer .footer-top {
    background: #3c4044;
    color: #fff;
    padding: 30px 0;
    position: relative;
}

footer .footer-top h5 {
    font-size: 21px;
}

footer .footer-top .btn {
    margin-top: 15px;
}

footer .footer-top::after {
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid #fff;
    content: "";
    height: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
    top: -1px;
    width: 0;
}

footer .footer-top.grey::after {
    border-top: 11px solid #f4f5f6;
}

footer .footer-middle {
    background: #2d3033;
    color: #aaa;
    padding: 30px 0;
}

footer .footer-middle ul {
    list-style: none;
    padding: 0;
}

footer .footer-middle .btn {
    background: #646464;
    border-color: #545454;
}

footer .footer-middle .btn i {
    margin-right: 5px;
}

footer .footer-middle a:not(.btn) {
    color: #878787;
    font-size: 14px;
}

footer .footer-middle a:not(.btn):hover {
    color: #fff;
}

footer .footer-middle h5 {
    font-weight: 700;
    font-size: 16px;
}

footer .footer-bottom {
    background: #222528;
    color: #aaa;
    padding: 15px 0;
}

footer .footer-bottom a {
    color: var(--main-color);
}

footer .footer-bottom .pull-left {
    margin-top: 8px;
}

footer hr {
    border-color: #454545;
}

footer .footer-logo {
    width: 50px;
}

/* Cookies */
#cookies {
    position: fixed;
    inset: auto 0 0;
    background: rgb(60 64 68 / 95%);
    color: #eef0f2;
    font-size: 14px;
    line-height: 18px;
    padding: 15px 30px;
    margin: 0;
    z-index: 2147483647;
    display: none;
}

#cookies a {
    font-weight: 600;
    color: #fff;
}

#cookies a:hover {
    text-decoration: underline;
}

#cookies > .close {
    opacity: 1;
    font-size: 12px;
    padding: 5px 7px;
    border-radius: 2px;
    color: #596475;
    background: #eef0f2;
    border: 1px solid #dedede;
    text-shadow: none;
    float: none;
    margin-left: 5px;
}

@media (width <= 991px) {
    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-collapse.collapse.in {
        display: block !important;
    }

    .navbar-header .collapse,
    .navbar-toggle {
        display: block !important;
    }

    .navbar-header {
        float: none;
    }

    .jumbotron p,
    .jumbotron .well {
        font-size: 16px;
    }

    .sms-index .section .col-md-4:not(:last-child) {
        margin-bottom: 30px;
    }

    .navbar-toggle {
        background: none !important;
        border: none;
        text-transform: uppercase;
        font-size: 18px;
        line-height: 24px;
        font-weight: 300;
        margin-top: 27px;
        margin-right: 0;
        padding: 0;
    }

    .navbar-toggle .fa {
        margin-left: 7px;
        font-size: 21px;
    }

    .footer-top * {
        text-align: center;
    }

    table.how-it-works tr td {
        width: 100% !important;
        float: none !important;
        display: block !important;
    }

    #profile-form {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Force table to not be like tables anymore */
    .order-details table,
    .order-details thead,
    .order-details tbody,
    .order-details th,
    .order-details td,
    .order-details tr {
        display: block;
    }

    .order-details table tr td {
        padding: 2px 8px;
        border: none;
    }

    .order-details .table-striped > tbody > tr:nth-of-type(2n+1) {
        background: none;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .order-details thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .order-details tr { border-top: 1px solid #ccc; margin-top: 20px; }

    .order-details td {

        /* Behave  like a "row" */
        border: none;

        /* border-left: 1px solid #eee; */
        position: relative;
        padding-left: 35% !important;
        white-space: normal;
        text-align: left;
        line-height: 20px !important;
    }

    .order-details td::before {

        /* Now like a table header */
        position: absolute;

        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 35%;
        font-size: 12px;
        line-height: 14px;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }
    .order-details td::before { content: attr(data-title); }

    .sidebar-nav .nav li a {
        font-size: 13px;
        padding: 10px 12px;
    }

    .subscription .actions .btn,
    .billing-method .actions .btn {
        opacity: 1;
        float: left;
    }

    .order-details tr.warning {
        border: none !important;
        display: table !important;
        width: 100% !important;
    }

    .order-details tr.warning td {
        background: #414243 !important;
        color: #fff !important;
        border: none !important;
        float: left;
        display: table-cell;
    }

    .order-details tr.warning td:first-child {
        width: 35% !important;
        padding: 10px 0 10px 6px !important;
    }

    .order-details tr.warning td:last-child {
        width: 65% !important;
        padding: 10px 6px 10px 0 !important;
    }

    .order-details tr.warning td::before {
        display: none;
    }
}
@media (width <= 767px) {
    h2,
    .h2 {
        font-size: 24px;
        font-weight: bold;
    }

    .navbar-header {
        margin: 0 !important;
    }

    #promobox .promobox-text {
        font-size: 18px;
    }

    #main-nav {
        width: 100%;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    #main-nav > ul {
        display: block;
        width: 100%;
        height: auto;
    }

    #main-nav > ul > li {
        float: none;
        display: block;
    }

    #main-nav > ul > li > a,
    #main-nav > ul > .dropdown > .dropdown-menu > li > a {
        padding: 10px 15px;
        text-align: left;
    }

    #main-nav > ul > li.active > a,
    #main-nav > ul > li > a:hover,
    #main-nav > ul > li > a:focus {
        background: #f80;
        color: #fff;
    }

    #main-nav .dropdown-menu > .active > a,
    #main-nav .dropdown-menu > .active > a:hover,
    #main-nav .dropdown-menu > .active > a:focus {
        background: none;
        color: #f80;
        font-weight: bold;
    }

    #main-nav .dropdown-menu {
        position: static;
        float: none;
        box-shadow: none;
        background-color: #f1f2f3;
        padding: 0 15px;
    }

    #main-nav .dropdown-menu .divider {
        display: none;
    }

    #main-nav .language-text {
        display: inline-block;
    }

    .panel.pricing-table .panel-body {
        padding: 15px;
        text-align: left;
    }

    .panel .panel-body .m-top-30.m-bottom-30 {
        margin: 0 !important;
    }

    .panel.pricing-table .panel-body img {
        float: right;
        margin-right: 0;
        margin-top: 0;
        max-height: 60px;
        position: absolute;
        right: 20px;
        text-align: right;
        top: 30px;
    }

    .panel.pricing-table .panel-body .btn {
        margin-top: 15px;
    }

    .panel.pricing-table .panel-heading {
        text-align: left;
        height: auto;
        padding: 10px 20px;
    }

    #tabs-nav > .col-sm-3 {
        padding-right: 15px;
    }

    #tabs-container > .col-sm-9 {
        padding-left: 15px;
    }

    #tabs-container > .col-sm-9 .container-fluid {
        padding: 0;
        border-left: none;
        margin-left: 0;
    }

    .sidebar-nav .nav {
        margin-bottom: 30px;
        text-align: center;
    }

    .sidebar-nav .nav li {
        display: inline-block;
        background: #f1f2f3;
        border: none !important;
        border-radius: 0 !important;
        margin-bottom: 5px;
        min-width: 24%;
    }

    .sidebar-nav .nav li a {
        border-radius: 0 !important;
        border: none !important;
    }

    .sidebar-nav .nav-list li.active a {
        background: #f80 !important;
        color: #fff;
    }

    .sidebar-nav .nav-list li.active a::after {
        display: none;
    }

    .order-index .order .btn {
        display: none;
    }

    .order-details .well * {
        text-align: left important;
    }
}
@media (width <= 640px) {
    #promobox .promobox-text {
        text-align: center;
        margin: 5px 0;
    }

    #promobox .promobox-text .fa {
        display: none;
    }

    #login-form,
    #recover-password-form,
    #reset-password-form,
    #contact-form,
    #register-form .well,
    #profile-form .well,
    #password-form .well {
        padding: 20px 15px !important;
    }

    .panel .panel-heading {
        padding-left: 15px;
    }

    .hero-unit {
        padding-top: 60px;
    }

    .hero-unit h1 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 30px;
    }

    .form-actions .btn {
        display: block;
        width: 100%;
        margin: 4px 0 !important;
        float: none !important;
    }

    .form-actions .btn:last-of-type {
        margin-top: 30px !important;
    }

    .sidebar-nav .nav li {
        min-width: 32%;
    }
}
@media (width <= 480px) {
    .cart-overview-container {
        padding: 30px 15px;
    }

    .subscriptions-list-container .subscription > .add-to-cart,
    .products-list-container .product > .add-to-cart {
        top: auto;
        bottom: 0;
        line-height: 62px;
    }

    .subscriptions-list-container .subscription .subscription-info,
    .products-list-container .product .product-info,
    .cart-overview-container .subscription .subscription-info,
    .cart-overview-container .product .product-info {
        width: 100%;
        padding: 0 15px;
    }

    .cart-overview-container .subscription .subscription-quantity,
    .cart-overview-container .product .product-quantity {
        width: 64%;
        padding: 0 15px;
        text-align: left;
        margin-top: 5px;
    }

    .subscriptions-list-container .subscription .subscription-price,
    .products-list-container .product .product-price {
        width: auto;
        text-align: left;
        padding: 0 15px;
        font-weight: bold;
    }

    .subscriptions-list-container .subscription .subscription-info .subscription-name,
    .products-list-container .product .product-info .product-name,
    .cart-overview-container .subscription .subscription-info .subscription-name,
    .cart-overview-container .product .product-info .product-name {
        font-size: 14px;
    }

    .cart-overview-container .subscription .subscription-subtotal,
    .cart-overview-container .product .product-subtotal {
        font-size: 15px;
        font-weight: bold;
        width: 33%;
        text-align: right;
        padding-right: 15px;
    }

    .cart-overview-container .subscription .subscription-quantity br,
    .cart-overview-container .product .product-quantity br {
        display: none;
    }

    .cart-overview-container .subscription .subscription-quantity small,
    .cart-overview-container .product .product-quantity small {
        margin-right: 10px;
        vertical-align: top;
    }

    .navbar-toggle {
        font-size: 0;
    }

    .cart-overview-container .btn-lg {
        font-size: 15px;
    }

    .sidebar-nav .nav li {
        width: auto;
        min-width: auto;
    }
}
