.calculator {
    background: #fff;
    background-repeat: no-repeat;
    background-size: cover;
}

.calculator form {
    box-shadow: 0px 4px 34px 0px #182A511F;
    border-radius: 15px;
    padding: 60px 30px;
}


.calculator h2 {
    text-align: center;
    color: #18327B;
}

@media screen and (max-width: 576px) {

    .calculator h2 br {
        display: none;
    }
}

.calculator .switcher {
    background-color: #E8EEFD;
    border-radius: 50px;
    width: 416px;
    text-align: center;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-bottom: 35px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .calculator .switcher {
        width: 500px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 576px) {
    .calculator .switcher {
        width: 328px;
    }
}

.calculator .switcher::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    z-index: 5;
    background-color: #2C5CED;
    top: 0;
    left: 0;
    border-radius: 50px;
    transition: all 0.4s ease-in-out;
}

.rtl .calculator .switcher::before {
    left: unset;
    right: 0;
}

.calculator .switcher.switched::before {
    left: 50%;
}

.rtl .calculator .switcher.switched::before {
    left: unset;
    right: 50%;
}

.calculator .switcher .tab {
    width: 50%;
    position: relative;
    font-size: 16px;
    color: #182A51;
    transition: all 0.4s ease-in-out;
    line-height: 1.5;
    padding: 12px;
    z-index: 10;
}

.calculator .switcher .tab.active {
    color: #fff;
}

.calculator .simple .swiper-slide {
    box-shadow: 0px 4px 34px 0px #182A511F;
    border-radius: 15px;
    padding: 24px 20px 32px;
}

.calculator .simple .swiper-slide a {
    width: 100%;
    background-color: #2C5CED;
}

.calculator .simple .swiper-slide a:hover {
    background-color: rgba(24, 50, 123, 0.7803921569);
}

.calculator .simple h6 {
    text-transform: uppercase;
    color: #142a6e;
    letter-spacing: 0.025em;
    font-size: 12px;
    line-height: 1.33;
    font-weight: 500;
    margin-bottom: 24px;
}

.calculator .simple ul {
    list-style: none;
    margin-bottom: 8px;
}

.calculator .simple ul li {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.4;
    color: #6B7280;
    position: relative;
    padding-left: 29px;
}

.rtl .calculator .simple ul li {
    padding-left: unset;
    padding-right: 29px;
}

.calculator .simple ul li::before {
    content: "";
    width: 12px;
    height: 6px;
    border-bottom: 2px solid #10B981;
    border-left: 2px solid #10B981;
    position: absolute;
    bottom: 8px;
    left: 0;
    transform: rotate(-42deg);
}

.rtl .calculator .simple ul li::before {
    border-left: unset;
    border-right: 2px solid #10B981;
    left: unset;
    right: 0;
    transform: rotateZ(-45deg) rotateY(180deg);
}

.calculator .simple select {
    width: 100%;
    padding: 23px 13px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    margin-bottom: 24px;
    border: 1px solid #17307A99;
    background: #fff;
    font-size: 14px;
    line-height: 20px;
    color: #142a6e;
}

.calculator .simple .price {
    border-top: 1px solid rgba(24, 50, 123, 0.8);
    padding-top: 24px;
    padding-bottom: 24px;
}

.calculator .simple .price span {
    color: #6B7280;
    line-height: 1.5;
    font-weight: 500;
}

.calculator .simple .price span:nth-child(1) {
    color: #18327B;
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
}

.calculator .simple .swiper-wrapper {
    margin-bottom: 45px;
}

.calculator .simple .swiper-pagination {
    bottom: 0;
}

.calculator .simple .swiper-pagination-bullet {
    background: #CBD9E9;
    transition: all 0.4s ease-in-out;
    opacity: 1;
}

.calculator .simple .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transform: scale(1.3);
    background: #2B5CED;
}

.calculator .simple .swiper-button-disabled {
    opacity: 0;
}

.calculator .simple .info {
    padding-top: 34px;
}

.calculator .simple .info p {
    margin-bottom: 12px;
    text-align: center;
    font-size: 13px;
    color: #6C7EB0;
}

.calculator .simple .info a {
    color: #18327B;
    text-decoration: underline;
    cursor: pointer;
}

.calculator .tab_content {
    display: none;
}

.calculator .tab_content.active {
    display: block;
}

.calculator .customized .own_fields {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.calculator .customized .own_fields label {
    display: block;
    font-weight: 500;
    line-height: 1.25;
    position: relative;
    margin-bottom: 10px;
}

.calculator .customized .own_fields label.optional_label {
    display: none;
    position: relative;
    width: 100%;
}

.calculator .customized .own_fields label.optional_label select {
    width: calc(100% - 35px);
    margin-right: 35px;
}

.rtl .calculator .customized .own_fields label.optional_label select {
    margin-right: unset;
    margin-left: 35px;
}

.calculator .customized .own_fields label.optional_label svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.rtl .calculator .customized .own_fields label.optional_label svg {
    right: unset;
    left: 0;
}

.calculator .customized .own_fields label.optional_label svg:hover {
    transform: translateY(-50%) scale(1.2);
}

.calculator .customized .add_os {
    color: #2C5CED;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.71;
    margin-top: -5px;
}

.rtl .calculator .customized .add_os {
    margin-left: unset;
    margin-right: auto;
}

.calculator .customized .add_storage {
    color: #2C5CED;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.71;
    position: absolute;
    top: 100%;
    right: 0;
}

.calculator .customized .add_storage {
    margin-left: unset;
    margin-right: auto;
    right: unset;
    left: 0;
}

.calculator .customized p {
    position: relative;
    margin-bottom: 39px;
}

.calculator .customized select {
    width: 100%;
    display: block;
    padding: 21px 9px;
    background: transparent;
    border: 1px solid #17307A99;
    font-weight: 400;
    line-height: 1.25;
    font-size: 16px;
    border-radius: 5px;
}

.calculator .customized select:not(:last-child) {
    margin-bottom: 5px;
}

.calculator .customized select .hidden {
    display: none !important;
}

.calculator .customized select .visible {
    display: block !important;
}

.calculator .customized #DedicatedStorage option {
    color: #000 !important;
}

.calculator .customized .column {
    width: 25%;
    padding-right: 30px;
}

.rtl .calculator .customized .column {
    padding-right: unset;
    padding-left: 30px;
}

@media screen and (max-width: 768px) {
    .calculator .customized .column {
        width: 50%;
    }

    .calculator .customized .column:nth-child(2) {
        padding-right: 0;
    }

    .rtl .calculator .customized .column:nth-child(2) {
        padding-right: unset;
        padding-left: 0;
    }
}

@media screen and (max-width: 576px) {
    .calculator .customized .column {
        padding-right: 0;
        width: 100%;
    }

    .rtl .calculator .customized .column {
        padding-right: unset;
        padding-left: 0;
    }
}

.calculator .customized .column:nth-child(3) {
    width: 50%;
    padding-right: 0;
}

.rtl .calculator .customized .column:nth-child(3) {
    padding-right: unset;
    padding-left: 0;
}

@media screen and (max-width: 768px) {
    .calculator .customized .column:nth-child(3) {
        width: 100%;
    }
}

.calculator .customized .optional_fields {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.calculator .customized .optional_fields p {
    display: flex;
    align-items: center;
    margin-bottom: 17px;
}

.calculator .customized .optional_fields label {
    font-weight: 500;
    font-size: 14px;
    color: #17307A;
    position: relative;
    width: calc(100% - 28px);
}

.calculator .customized .optional_fields label .tooltip span {
    bottom: 100%;
    right: 0;
    top: unset;
}

.rtl .calculator .customized .optional_fields label .tooltip span {
    right: unset;
    left: 0;
}

.calculator .customized .optional_fields input {
    margin-right: 12px;
    width: 16px;
    height: 16px;
}

.rtl .calculator .customized .optional_fields input {
    margin-right: unset;
    margin-left: 12px;
}

.calculator .customized .price {
    text-align: right;
}

.rtl .calculator .customized .price {
    text-align: left;
}

@media screen and (max-width: 576px) {
    .calculator .customized .price {
        text-align: right;
        width: 100%;
        margin-bottom: 17px;
    }

    .rtl .calculator .customized .price {
        text-align: left;
    }
}

.calculator .customized .price span {
    color: #6B7280;
    line-height: 1.5;
    font-weight: 500;
}

.calculator .customized .price span:nth-child(1) {
    color: #18327B;
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
}

.calculator .customized .month_price {
    text-align: right;
    position: absolute;
    top: 100%;
    right: 0;
    transform: translateY(-8px);
}

.rtl .calculator .customized .month_price {
    text-align: left;
    right: unset;
    left: 0;
}

@media screen and (max-width: 576px) {
    .calculator .customized .month_price {
        text-align: right;
        width: 100%;
        margin-bottom: 17px;
        transform: translateY(-87px);
    }

    .rtl .calculator .customized .month_price {
        text-align: left;
    }
}

.calculator .customized .month_price span {
    color: #6B7280;
    line-height: 1.5;
    font-weight: 500;
    font-size: 16px;
}

.calculator .customized .month_price span:nth-child(1) {
    color: #18327B;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    position: relative;
}

.calculator .customized .month_price span:nth-child(1)::before {
    /*content: 'Plus ';*/
	color: #6B7280;
    line-height: 1.5;
    font-weight: 500;
    font-size: 16px;
}

.calculator .customized #DedicatedCPU option[disabled] {
    display: none !important;
}

.calculator .customized #BandwidthTraffic option[disabled] {
    display: none !important;
}

.calculator .customized #DedicatedRAM option[disabled] {
    display: none !important;
}

.calculator .customized .info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

@media screen and (max-width: 576px) {
    .calculator .customized .info {
        text-align: center;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}

.calculator .customized .info p {
    max-width: 320px;
    color: #6C7EB0;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 0;
}

@media screen and (max-width: 576px) {
    .calculator .customized .info p {
        max-width: 100%;
        text-align: left;
        padding-top: 15px;
    }

    .rtl .calculator .customized .info p {
        text-align: right;
    }
}

.calculator .customized .info a {
    background-color: #18327B;
    min-width: 221px;
}

.calculator .customized .info a:hover {
    background-color: rgba(24, 50, 123, 0.7803921569);
}

.calculator .customized .tooltip {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.rtl .calculator .customized .tooltip {
    right: unset;
    left: 0;
}

.calculator .customized .tooltip path {
    transition: all 0.4s ease-in-out;
}

.calculator .customized .tooltip span {
    position: absolute;
    top: 100%;
    left: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05), 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    width: 224px;
    padding: 12px 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    transform: translateY(-7px);
    font-size: 14px;
    line-height: 1.43;
    color: #142a6e;
}

.rtl .calculator .customized .tooltip span {
    left: unset;
    right: 100%;
}

@media screen and (max-width: 768px) {

    .calculator .customized .optional_fields label .tooltip span,
    .calculator .customized .tooltip span {
        bottom: 100%;
        right: 0;
        top: unset;
        left: unset;
    }

    .rtl .calculator .customized .optional_fields label .tooltip span,
    .rtl .calculator .customized .tooltip span {
        right: unset;
        left: 0;
    }
}

.calculator .customized .tooltip:hover path {
    fill: #18327B;
}

.calculator .customized .tooltip:hover span {
    opacity: 1;
    visibility: visible;
}

.calculator .customized p.row_label {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.calculator .customized p.row_label>label:first-child {
    width: 100%;
}

.calculator .customized p.row_label>span {
    position: absolute;
    top: 0;
    left: calc(100% - 130px);
    font-weight: 500;
    line-height: 1.25;
    color: #0f151f;
    display: none;
}

.rtl .calculator .customized p.row_label>span {
    left: unset;
    right: calc(100% - 130px);
}

.calculator .customized p.row_label>span.visible {
    display: block;
}

.calculator .customized p.row_label>select {
    width: 100%;
}

.calculator .customized p.row_label>select.short_select {
    width: calc(100% - 150px);
}

.calculator .customized p.row_label>select:nth-child(4) {
    width: 130px;
    position: relative;
}

.calculator .customized p.row_label>select:nth-child(4) option[disabled] {
    display: none;
}

.calculator .customized .optional_label.row_label {
    flex-wrap: wrap;
    justify-content: space-between;
}

.calculator .customized .optional_label.row_label.flex_row {
    display: flex !important;
    padding-top: 23px;
}

.calculator .customized .optional_label.row_label>span {
    position: absolute;
    top: 0;
    left: calc(100% - 130px);
    font-weight: 500;
    line-height: 1.25;
    color: #0f151f;
    display: none;
}

.rtl .calculator .customized .optional_label.row_label>span {
    left: unset;
    right: calc(100% - 130px);
}

.calculator .customized .optional_label.row_label>span.visible {
    display: block;
}

.calculator .customized .optional_label.row_label select.short_select {
    width: calc(100% - 150px);
    margin-right: 0;
}

.rtl .calculator .customized .optional_label.row_label select.short_select {
    margin-left: 0;
    margin-right: unset;
}

.calculator .customized .optional_label.row_label select:nth-child(3) {
    width: 110px;
    position: relative;
    margin-right: 20px;
}

.rtl .calculator .customized .optional_label.row_label select:nth-child(3) {
    margin-left: 20px;
    margin-right: unset;
}

.calculator .customized .optional_label.row_label select .option_hidden {
    display: none !important;
}

#ControlPanelNum {
    display: none !important;
}

#ControlPanelNum.visible {
    display: block !important;
}

#ControlPanelNum1 {
    display: none !important;
}

#ControlPanelNum1.visible {
    display: block !important;
}

#ControlPanelNum2 {
    display: none !important;
}

#ControlPanelNum2.visible {
    display: block !important;
}

#ControlPanelNum3 {
    display: none !important;
}

#ControlPanelNum3.visible {
    display: block !important;
}

.calculator .customized .own_fields label,
.calculator .customized .optional_fields label,
.calculator .customized .info p {
    color: #35436E;
}

.calculator .customized select {
    color: #17307A;
}

.calculator .simple .price {
    text-align: right;
    flex-shrink: 0;
}

.rtl .calculator .simple .price {
    text-align: left;
}

.calculator .customized .column:last-child .tooltip span{
	left: unset;
    right: 100%;
}

.rtl .calculator .customized .column:last-child .tooltip span{
    left: 100%;
    right: unset;
}
