[data-theme="light"] {
    --bg-color-checkmark: rgba(0, 0, 0, 0.2);
    --bg-color-checkmark-hover: rgba(0, 0, 0, 0.3);
    --border-custom-select: 1px solid rgba(0, 0, 0, 0.8);
    --color-custom-select-title: gray;
    --color-quote-grid-title: gray;
    --box-shadow-quote-grid: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    --border-quote-grid: 0;
    --bg-color-estimate-view: #212121;
    --color-custom-select-description: rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] {
    --bg-color-checkmark: rgba(255, 255, 255, 0.6);
    --bg-color-checkmark-hover: rgba(255, 255, 255, 0.7);
    --border-custom-select: 1px solid rgba(255, 255, 255, 0.8);
    --color-custom-select-title: rgba(255, 255, 255, 0.7);
    --color-quote-grid-title: rgba(255, 255, 255, 0.7);
    --box-shadow-quote-grid: none;
    --border-quote-grid: 1px solid white;
    --bg-color-estimate-view: #212121;
    --color-custom-select-description: grey;
}

html {
    overflow-y: scroll;
}

.quote-bg {
    width: 100%;
    height: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
}

.icon-button {
    margin: 10px;
}

.quote-question {
    margin: 20px;
    text-align: center;
    font-family: 'Anton', sans-serif;
}

.quote-grid {
    width: 90%;
    display: table;
    box-shadow: var(--box-shadow-quote-grid);
    border: var(--border-quote-grid);
    border-radius: 7px;
    margin: 20px auto;
    padding: 10px;
}

.quote-heading {
    text-align: left;
    padding: 10px;
}

.quote-detail {
    text-align: center;
}

.quote-items-detail {
    text-align: start;
}

.radio-button {
    border: 1px solid var(--border-color-radio-button);
    border-radius: 10px;
    background-color: transparent;
    display: inline-block;
    width: 100px;
    margin: 10px;
}

.service-title {
    opacity: 0.8;
}

.label-text-input {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--color-fg);
    transition: all .25s linear;
    pointer-events: none;
    margin-left: 1rem;
}

.text-input-field {
    position: relative;
    margin-bottom: 30px;
}

.text-input {
    width: 90%;
    outline: none;
    border: none;
    background: transparent;
    border: 2px solid var(--color-fg);
    color: var(--color-fg);
    margin: auto;
    display: block;
    font-size: medium;
    padding: 15px;
    border-radius: 5px;
}

.text-input:focus {
    border: 4px solid var(--yellow);
}

.text-input:valid {
    border: 4px solid var(--yellow);
}

.text-input:focus~.label-text-input {
    top: 5%;
    left: 5%;
    background-color: var(--color-bg);
    padding: 0 3px;
}

.text-input:valid~.label-text-input {
    top: 5%;
    left: 5%;
    background-color: var(--color-bg);
    padding: 0 3px;
}

#other-service-text-input-field {
    display: none;
}

#other-service-done-button {
    display: none;
    margin: auto;
    width: 200px;
    background-color: var(--green);
}

#other-service-done-button:hover {
    transform: scale(1.1);
}

#success-done-button {
    margin: auto;
    width: 200px;
    background-color: var(--info);
}

#success-done-button:hover {
    transform: scale(1.1);
}

#other-service-text-input:valid~#other-service-done-button {
    display: block;
}

#other-service-text-input:invalid~#other-service-done-button {
    display: none;
}

#quote-spinner {
    display: none;
}

.invisible-checkbox {
    display: none;
}

.done-button {
    background-color: var(--green);
    border: none;
    color: white;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: none;
    font-size: 22px;
    cursor: pointer;
    font-weight: bold;
    width: 200px;
    margin: auto;
}

.done-button:hover {
    transform: scale(1.1);
    transition: .3s;
}

#quote-table {
    display: table;
    border-radius: 10px;
}

.table-section-heading {
    text-align: left;
    margin: 10px;
}

#invoice {
    display: none;
}

#quote {
    display: none;
}

.invoice-text,
.invoice-time-information-text {
    color: black;
    margin: 10px;
}

#invoice-date-text {
    color: var(--gray);
}

.invoice-divider {
    height: 4px;
    width: 90%;
    background-color: var(--gray);
    outline: none;
    border: none;
    margin-top: 10px;
}

.invoice-title-text {
    color: var(--gray);
    margin: 10px;
    text-align: left;
}

.invoice-detail-text {
    color: var(--gray);
    margin: 10px;
    text-align: right;
    font-weight: bold;
}

.info-message-table {
    padding: 20px;
    background-color: var(--info);
    color: white;
    display: block;
    margin: auto;
    width: 85%;
    border: 1px solid var(--info);
    border-radius: 10px;
}

.info-message-icon {
    float: left;
    margin: auto;
}

.info-message-text {
    color: white;
    margin-left: 10px;
}

#support-info-message-table {
    display: none;
}

.invoice-button {
    border-radius: 10px;
    width: 50%;
    margin: auto;
    background-color: black;
    border: none;
    color: white;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 22px;
    cursor: pointer;
    font-weight: bold;
}

.invoice-button:hover {
    background-color: var(--green);
    transition: .3s;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch input:checked+.slider {
    background-color: var(--green);
}

.switch input:focus+.slider {
    box-shadow: 0 0 1px var(--green);
    ;
}

.switch input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.estimate-view {
    width: 100%;
    background-color: var(--bg-color-estimate-view);
    padding: 12px;
    position: fixed;
    display: none;
    bottom: 0;
    z-index: 10;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.round-checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.round-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: var(--bg-color-checkmark);
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.round-checkbox-container:hover input~.checkmark {
    background-color: var(--bg-color-checkmark-hover);
}

/* When the checkbox is checked, add a green background */
.round-checkbox-container input:checked~.checkmark {
    background-color: var(--green);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.round-checkbox-container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.round-checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom-select select {
    width: 100%;
    padding: 10px;
    border: var(--border-custom-select);
    border-radius: 7px;
}

.custom-select-title {
    color: var(--color-custom-select-title);
}

.estimate-view table {
    width: 100%;
}

#estimated-cost-hint {
    color: white;
    text-align: start;
}

#estimated-cost {
    color: #69F0AE;
    text-align: end;
}

#estimate-summary {
    opacity: 0.9;
    color: #69f0ae;
    text-align: center;
}

.quote-grid-title {
    text-align: start;
    color: var(--color-quote-grid-title);
}

.instance-info {
    padding: 5px;
    background-color: #eee;
    border: 1px solid #eee;
    border-radius: 7px;
    margin-top: 10px;
}

#number-of-vcpus-row,
#amount-of-memory-row {
    display: none;
}

.range-input {
    width: 100%;
}

.range-input-text {
    text-align: center;
}

.instance-name-text {
    color: var(--green);
    font-weight: bold;
}

.instance-specs-text {
    color: var(--gray);
}

.quantity-input {
    padding: 8px;
}

#select-storage-type {
    display: none;
}

#backup-size {
    display: none;
}

#enable-data-cache-table {
    display: none;
}

#select-discount-option {
    display: none;
}

.estimate-view-table {
    width: 100%;
}

.estimate-view-row {
    text-align: center;
}

.estimate-view-button-text {
    color: white;
    font-size: 12px;
}

.measurement-type-selector {
    padding: 7px;
    margin-left: 7px;
}

.custom-select-description {
    font-size: 13px;
    color: var(--color-custom-select-description);
}

.saas-get-quote-button {
    width: 250px;
    margin: auto;
    background-color: var(--color-fg);
    color: var(--color-bg);
    font-size: 16px;
    display: none;
}

.saas-get-quote-button:hover {
    color: white;
}

#share-invoice-button-td,
#ephemeral-public-ip-instance-table,
#static-public-ip-instance-table,
#threads-per-core-table,
#enable-confidential-vm-service-table,
#multi-region-table,
#plugin-services-table,
#select-plugin-types,
#select-webhook-types,
#select-api-services,
#select-api-types {
    display: none;
}

.saas-selector {
    margin: 15px auto;
}

md-outlined-select {
    width: 90%;
    margin: auto;
    display: block;
}

md-outlined-text-field {
    width: 90%;
    margin: auto;
    display: block;
}

.storage-input-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
}

.measurement-type {
    margin-right: 12px;
}

#select-multi-region {
    display: none;
}