﻿@import url("OutSystemsUIWeb/Theme.BaseTheme.css");

/*------------------------------------*\
             Import Font
\*------------------------------------*/


@font-face {
    font-family: 'Poppins';
    src: url('SpitFire/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/*@font-face {
    font-family: 'Poppins';
    src: url('/SpitFire/OpenSans-Light.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}*/

@font-face {
    font-family: 'Poppins';
    src: url('SpitFire/Poppins-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('SpitFire/Poppins-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('SpitFire/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: bold;
}

@font-face {
    font-family: 'Poppins';
    src: url('SpitFire/Poppins-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('SpitFire/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
}

@font-face {
    font-family: 'Poppins';
    src: url('Spitfire/Poppins-BlackItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('Spitfire/Poppins-Black.ttf') format('truetype');
    font-weight: 800;
    font-style: bold;
}

@font-face {
    font-family: 'Poppins';
    src: url('Spitfire/Poppins-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('Spitfire/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 900;
    font-style: bold;
}

@font-face {    
    font-family: 'digitalBold';
    src: url('/Spitfire/LCDMB.TTF') format('truetype');
    font-weight: normal;    
    font-style: normal;
}

@font-face {    
    font-family: 'digital';
    src: url('/Spitfire/LCDMU.TTF') format('truetype');
    font-weight: normal;    
    font-style: normal;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    font-family: 'Poppins', sans-serif;
}

body, select, textarea, input, button {
    font-family: 'Poppins', sans-serif;
}

:root {
    --color-primary: #EC4390;
    --giga-Pink: #EC2D85;
}

/*------------------------------------*\
             General
\*------------------------------------*/

body {
    background: transparent;
}

.OverflowWrapper {
    position: relative;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
}

.OverflowWrapper::-webkit-scrollbar { /* WebKit */
    display: none;
}

label.MandatoryLabel {
    position: relative;
}

/*------------------------------------*\
             Links
\*------------------------------------*/

a, 
a:visited,
a:hover {
    color: unset;
}

/*------------------------------------*\
             Inputs and Buttons
\*------------------------------------*/

.Button {
    height: 34px;
    border-radius: 17px;
    background-color: #EC4390;
    box-shadow: 0 5px 10px 0 rgba(204,204,204,0.3);
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 600;
    width: 100%;
    border: none;
}

.Button.InsideInput {
    font-size: 15px;
    height: 30px;
    width: auto;
}

.Button.Large {
    height: 44px;
    border-radius: 22px;
}    

.Button.White {
    border: 2px solid rgba(204,204,204,0.27);
    background-color: #FFFFFF;
    color: #EC4390;
}

.Button[disabled="disabled"] {
    background-color: var(--color-neutral-2);
    color: var(--color-neutral-6);
    pointer-events: none;
}

.input,
textarea.input,
.input:focus,
.input:hover,
.select,
.select:focus,
.select:hover {
    border: 2px solid rgba(204,204,204,0.27);
    box-shadow: 0 5px 10px 0 rgba(204,204,204,0.3);
    border-radius: 5px;
}

[readonly="readonly"].input {
    background-color: #F4F4F4;
    color: rgba(0,0,0,0.7);
    border: none;
    box-shadow: none;
}

.toggle-button {
    height: 20px;
    width: 45px;
    border-radius: 10px;
    transform: translateY(3px);
}

.toggle-button.toggle-button-checked {
    background-color: #A4DEE2;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
    border: none;
}

.toggle-button:after {
    border: 2px solid rgba(204,204,204,0.27);
    box-shadow: 0 5px 10px 0 rgba(204,204,204,0.3);
    height: 28px;
    width: 28px;
    top: -7px;
    left: -10px;
    background-color: #FFFFFF;
    color: #FFFFFF;
}

.toggle-button.toggle-button-checked:after {
    -webkit-transform: translateX(30px) translateZ(0);
    transform: translateX(30px) translateZ(0);
    background-color: #EC2D85;
    font-family: FontAwesome;
    color: #FFFFFF;
    content: "\f00c";
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: larger;
    border: 2px solid #FFF;
    box-shadow: 0 5px 15px 0 rgba(0,0,0,0.1);
}

.toggle-button:hover {
    border: none;
}

.radio-button:before {
    height: 28px;    
    width: 28px;    
    background-color: #94E0E4;    
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
    border: none;
}

.radio-button:checked:before {
    background-color: #FFF;
    border: 7.5px solid #EC2D85;
    height: 13px;
    width: 13px;
}

.range-slider {
    height: 46px;
    border: 2px solid rgba(204,204,204,0.27);
    border-radius: 47px;
    background-color: #FFFFFF;
    box-shadow: 0 5px 10px 0 rgba(204,204,204,0.3);
    padding: 0 20px;
    margin-bottom: 0px;
}

.range-slider .noUi-horizontal {
    height: 6px;
    margin: 17px 0px;
    background: #94E0E4;
}

.noUi-base {
    height: 12px;
    margin-top: -3px;
}

.range-slider .noUi-connects {
    border-radius: 6px;
}

.range-slider .noUi-connect {
    background: #EC2D85;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
}

.range-slider .noUi-handle {
    height: 27px;
    width: 27px;
    border: 2px solid #EC2D85;
    border-radius: 17px;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 2px white, 0 5px 10px 3px rgba(204,204,204,0.3);
    margin-top: -8px;
}

.range-slider .noUi-handle.noUi-active,
.range-slider .noUi-handle:hover {
    border: 2px solid #EC2D85;
}

.range-slider .noUi-handle:before {
    left: 9px;
    background: #EC2D85;
    height: 15px;
    width: 5px;
    border: none;
    top: 9px;
}

.range-slider .noUi-handle:after {
    display: none;
}

.range-slider .noUi-pips-horizontal {
    top: -35px;
}

.range-slider .noUi-value-horizontal {
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    font-size: 12px;
    color: #000;
}

.range-slider-values {
    display: none;
}

/*------------------------------------*\
             Modal
\*------------------------------------*/

.modal-top,
.modal-content {
    padding: 0;
}

.modal-wrapper {
    border: 1px solid rgba(151,151,151,0.1);
    border-radius: 19px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
}

@media only screen and (max-width: 800px) {  
    .modal {
        padding: 1%;
        -webkit-box-align: flex-end !important;
        -ms-flex-align: flex-end !important;
        align-items: flex-end !important;
        transform: translate3d(0, 0, 200px);
    }
}

.ModalWithClose .modal-close {
    padding: 10px 10px 0 0;
}


/*----------------------------------------------*\
        Font / Background styling shortcuts
\*----------------------------------------------*/

.fs10 {
    font-size: 10px;
}

.fs12 {
    font-size: 12px;
}

.fs13 {
    font-size: 13px;
}

.fs14 {
    font-size: 14px;
}

.fs15 {
    font-size: 15px;
}

.fs17 {
    font-size: 17px;
}

.fs18 {
    font-size: 18px;
}

.fs20 {
    font-size: 20px;
}

.fs20_bold{
    font-size: 20px;
    line-height: 31px;
    font-weight: 700;
}

.fs21 {
    font-size: 21px;
}

.fs22 {
    font-size: 22px;
}

.fs24 {
    font-size: 24px;
    font-weight: 700;
    line-height: 31px;
}

.fs26 {
    font-size: 26px;
}

.fs28 {
    font-size: 28px;
}

.fs30 {
    font-size: 30px;
}

.fs32 {
    font-size: 32px;
}

.fs36 {
    font-size: 36px;
}

.fs38 {
    font-size: 38px;
}

.fs42 {
    font-size: 42px;
}

.fs48 {
    font-size: 48px;
}

.fs58 {
    font-size: 58px;
}

.fs60 {
    font-size: 60px;
}

.fwb {
    font-weight: bold;
}

.fw400 {
    font-weight: 400;
}

.fw600 {
    font-weight: 600;
    font-style: bold;
}

.fw700 {
    font-weight: 700;
    font-style: bold;
}

.fw800 {
    font-weight: 800;
    font-style: bold;
}

.font-extra-bold {
    font-weight: 900;
}

.cgray {
    color: #282828;
}

.cgraylight {
    color: #AAAAAA;
}

.cyellowdark{
    color: #F7D4A2;
}

.cyellow{
    color: #FFD043;
}

.csilver{
    color: #D8D6E1;
}

.cpink {
    color: #EC4390;
}

.cblue {
    color: #0726F8;
}

.giga-pink {
    color: var(--giga-Pink);
}

.fpink {
    color: #EC3585;
}

.p20{
    padding: 20px;
}

.p35 {
    padding: 0px 35px 35px;
}

.text-white {
    color: white;
}

.text-orange{
    color: #FADE4D;
}

.text-black {
    color: black;
}

.textcase-capitalize {
   text-transform: capitalize;
}

.giga-grey {
    color: #999;
}

@media only screen and (max-width: 800px) {
    .p35 {
        padding: 0px 10px 35px;
    }
}
/*----------------------------------------------*\
                Braintree Styling
\*----------------------------------------------*/

.braintree-input {
    height: 46px;
    padding: 0px 10px;
    border: 2px solid rgba(204,204,204,0.27);
    border-radius: 5px;
    background-color: #FFFFFF;
    box-shadow: 0 5px 10px 0 rgba(204,204,204,0.3);
}

.braintree-hosted-fields-invalid {
    border: 2px solid #e53935;
}

.braintree-hosted-fields-focused {
  border-color: #777;
}

.braintree-hosted-fields-valid {
  border-color: limegreen;
}

.hidden {
    display: none;
}

/*----------------------------------------------*\
        Tooltip
\*----------------------------------------------*/

.tooltip {
   color: #FFFFFF;
   font-size: 12px;
   line-height: 14px;
   text-align: left;
   min-width: auto;
   padding: 14px 12px;
   word-wrap: break-word;
   white-space: normal;
}

.tooltip.tooltip-top {
   top: unset;
   bottom: 100%;
}

.tooltip.tooltip-bottom {
   top: 100%;
   bottom: unset;
}    

.tippy-popper {
    max-width: 250px;
}


/*------------------------------------*\
        Display Flex Properties
\*------------------------------------*/

.display-inline-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: inline-flex;
}

.justify-content-center {
    -webkit-box-pack: center;
       -ms-flex-pack: center;
     justify-content: center;
}

.justify-content-space-between {
    -webkit-box-pack: space-between;
       -ms-flex-pack: space-between;
     justify-content: space-between;
}

.justify-content-space-evenly {
    -webkit-box-pack: space-evenly;
       -ms-flex-pack: space-evenly;
     justify-content: space-evenly;
}

.flex-wrap-wrap {
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
    flex-wrap: wrap;
}

.flex-110 {
    -webkit-flex: 1 1 0;
    flex: 1 1 0;
    
}

.gift-card .flex-110 {
    flex: inherit;
}

.lostSIM-card .flex-110 {
    flex: inherit;
}

.flex-inherit {
    flex: inherit;
}

.flex-grow-1 {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.absoluteImage-center {
    position: absolute;
    top: auto;
    bottom: auto;
    right: 0px;
    left: 0px;
}

.ServiceStudio-Display-None{
    
}

.Mirror{
    transform: scaleX(-1);
}

.bg-blue{
    background: #9FE5E9;
}

.underline,
.text-underline {
    text-decoration: underline;
}

.popupshadow{
    text-shadow: 1px 1px 1px #000000;
}

.second-sim-box-shadow {
    border-radius: 10px;
    border: 2px solid #EEE;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
}

.highlight-deal {
    border-radius: 8px 0px;
    background: #1510FF;
    padding: 0px 8px;
    letter-spacing: 0.417px;
    color: #FFF;
    text-transform: uppercase;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.badge-top-left {
    position: absolute;
    top: -8px;
    left: -2px;
}

.badge-top-left.is-selected{
    top: -16px;
}

.toggle-top-right{
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
}

.toggle-top-right.is-selected{
    top: 8px;
    right: 8px;
}

.mw155 {
    max-width: 155px;
}

.option-btn {
    padding: 16px;
    border-radius: 20px;
    border: 2px solid rgba(204, 204, 204, 0.30);
    background: var(--Neutral---White, #FFF);
    /* Shadow 1 */
    box-shadow: 0px 5px 10px 0px rgba(204, 204, 204, 0.30);
}

.delivery-box{
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(236, 45, 133, 0.50);
    background: rgba(236, 45, 133, 0.02);
}

.mt-20 {
    margin-top: 20px;
}

/* compatible-devices */
.modal-content:has(.compatible-devices-wrapper) {
    overflow-y: hidden;
}

.compatible-devices-wrapper {
    border-radius: 20px 20px 0 0;
    padding: 24px 16px;
    position: relative;
}

.compatible-devices-modal {
    position: relative;
}

.close-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    font-weight: 900;
    width: 15px;
    height: 21px;
    z-index: 1;
}

.close-icon .fa {
    font-size: 21px;
}

.close-icon .fa-fw {
    text-align: justify;
}

.compatible-devices-wrapper .text-header {
    font-weight: 600;
    font-size: 28px;
    line-height: 33.6px;
    text-align: center;
    padding: 0 16px 16px;
}

.compatible-devices-wrapper .search-input .fa {
    font-size: 10.2px;
}

.input-with-icon .input-with-icon-content-icon:has(.close) {
    width: 56px;
}

.input-with-icon .input-with-icon-content-icon a.close {
    color: var(--color-primary);
}

.compatible-device-list-wrapper {
    padding: 16px 0;
    height: 52vh;
    overflow-y: auto;
}

.compatible-devices-wrapper .list-item-wrapper {
    display: flex;
    border-radius: 0 0 1px 0;
    padding:  24px 16px;
    border-bottom: 1px solid #F1F1F1;
}

.compatible-devices-wrapper .item-content-icon .fa {
    font-size: 18px;
}

.compatible-devices-wrapper .item-content-text {
    font-size: 17px;
    line-height: 20.4px;
}

/* SignUp1_PlanSelection */
.plan-selection .header-text {
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    padding: 32px 16px 16px 16px;
}

.signup-tab-wrapper .tabs-header-item,
.install-eSIM .tabs-header-item {
    margin-left: 0;
}

.signup-tab-wrapper .tabs-header-item,
.install-eSIM .tabs-header-item {
    width: 50%;
}

.signup-tab-wrapper.tabs .tabs-content {
    padding: 8px 0 24px 0;
}

.signup-tab-wrapper .tabs-header-item.active,
.install-eSIM .tabs-header-item.active {
    color: var(--color-primary);
}

.signup-tab-wrapper .tab-header-text {
    font-size: 17px;
    line-height: 25.5px;
}

.signup-tab-wrapper .tab-item-sec1-wrapper {
    margin-top: 16px;
}
.signup-tab-wrapper .tab-item-sec2-wrapper {
    margin-top: 16px;
    padding-left: 24px;
    padding-right: 24px;
}

/* SignUp2_PlanSelection_SIMType - Block */
.background-separator {
    background-color: rgba(238, 238, 238, 1)
}

.column-gap-base {
    column-gap: 16px;
}

.simtype-block-wrapper {
    padding: 16px;
}

.simtype-wrapper {
    margin-top: 17px;
    display: flex;
    column-gap: 2%;
}

.simtype-item-wrapper {
    height: 100%;
    width: 50%;
}

.simtype-item {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 2px solid rgba(204, 204, 204, 0.3);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 10px 0 rgba(204, 204, 204, 0.3);
}

.simtype-item-wrapper.physicalSIM {
    margin-top: 24px;
}

.simtype-item-wrapper .eSIM {
    border-radius: 0 20px 20px 20px;
}

.simtype-item.active {
    border: 2px solid rgba(236, 45, 133, 1);
    box-shadow: none;
}

.simtype-item-header-text {
    font-size: 21px;
    font-weight: 700;
    line-height: 18px;
}

.simtype-item-header-text-zero {
    font-size: 21px;
    font-weight: 700;
    line-height: 18px;
    text-decoration: line-through;
}

.simtype-item-header-text-free {
    font-size: 21px;
    font-weight: 700;
    line-height: 18px;
    color: #EC2D85;
}

.simtype-item-msg {
    text-align: center;
    margin-top: 17px;
    width: 47%;
}

.simtype-quicker-text-wrapper {
    border-radius: 8px 0 0 0;
    padding: 2px 8px;
    background-color: rgba(148, 224, 228, 1);
}

.simtype-quicker-text {
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    line-height: 14.4px;
}

.quicker-triangle {
    width: 0;
    height: 0;
    border-width: 25px 0 0 4vh;
    border-color: transparent transparent transparent rgba(148, 224, 228, 1);
    border-style: solid;
}

.continue-btn {
    margin: 24px 0;
    z-index: 1;
    width: 100%;
}

.check-device-text {
    font-size: 17px;
    font-weight: 600;
    line-height: 20.4px;
    color: rgba(236, 45, 133, 1);
}

.btn-bottom-fixed {
    position: absolute;
    bottom: 0;
    width: calc(100% - 32px);
}

/* SignUp8_Summary - Block */
.column-gap-11 {
    column-gap: 11px;
}

/* install-eSIM page */
.column-gap-s {
    column-gap: 8px;
}

.install-eSIM {
    position: relative;
    margin-bottom: 24px;
}

.install-eSIM-tab-header {
    font-weight: 600;
    font-size: 17px;
    line-height: 25.5px;
}

.install-eSIM .tab-item-wrapper {
    /*height: calc(100vh - 300px);
    overflow-y: auto;
    margin-bottom: 48px;*/
    display: flex;
    flex-direction: column;
    padding: 0 16px;
}

.eSIM-scrollable {
    height: calc(100vh - 430px);
    overflow-y: auto;
}

.auto-install .header-text {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 33.6px;
}

.auto-install-content {
    padding: 24px 12.5px;
    /*margin-bottom: 20px;*/
}

.auto-install-content-title {
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
    text-align: center;
}

.auto-install .content-item-number {
    display: flex;
    font-weight: 700;
    font-size: 21px;
    color: var(--color-primary);
    min-width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
}

.install-eSIM-btn-wrapper {
    max-width: 780px;
    /*position: absolute;*/
    width: 100%;
    bottom: 16px;
    /*padding: 0 36px 12px 0;*/
    padding: 0 0 12px 0;
    background-color: white;
}

.QRImage-wrapper {
    margin-left: 8px;
}

.install-eSIM .QRSave-btn {
    margin-top: 8px;
    max-width: 225px;
}

.doc-copy-wrapper {
    overflow-wrap: anywhere;
    padding: 12px 24px;
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 8px;
    border: 2px solid rgba(241, 241, 241, 1);
    box-shadow: 0px 4px 10px 0px rgba(204, 204, 204, 0.3);
}

.doc-copy-wrapper .code {
    min-width: fit-content;
    display: flex;
    justify-content: space-between;
    column-gap: 8px;
    align-items: center;
}

.btn-white-background {
    border: 2px solid rgba(236, 45, 133, 1);
    background-color: rgba(255, 255, 255, 1);
    color: rgba(236, 45, 133, 1);
    border-radius: 70px;
    font-size: 15px;
}

/* SIM Services */
.eSim-pay-wrapper {
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    padding: 12px 15px;    
}

.eSim-pay-wrapper.eSIMFee {
        font-size: 17px;
    background-color: rgba(248, 248, 248, 1);
}

.eSim-pay-wrapper.totalFee {
    font-size: 15px;
    background-color: rgba(244, 244, 244, 1);
}

/* eSIM_OnHold _ Block */
.onhold-content-wrapper {
    padding: 0 28.5px;
}

.copied-text {
    color: #808080;
    font-size: 13px;
    font-weight: bold;
}

.refresh-btn-wrapper span {
    width: 100%;
}

.refresh-btn-wrapper span {
    width: 100%;
}"background-color: #EC2D85;"