﻿:root {
    --global-padding: 8px;
}

html {
    font-size: 13pt;
}
/*
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}
*/
body {
    background-color: #00193d;
    font-family: Poppins;
    overflow-x: hidden;
}

.optional-feature {
    cursor: pointer;
    display: inline-block;
    text-decoration: underline;
}

/* For unsubscribe page: START */
.toast {
    color: white;
    position: absolute;
    top: 10px;
    right: 10px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 58px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 50%;
    left: 16px;
    height: 25px;
    width: 25px;
    background-color: #ccc;
    transform: translateY(-25%);
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: #bbb;
}

/* Background color when checkbox is checked. */
.checkbox-container input:checked ~ .checkmark {
    /* background-image: linear-gradient(to right, #EF1E2B, #B1304F, #774170, #774170, #774170, #395394, #0063B5, #0063B5); */
    background-color: #2062ff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 9px;
    top: 7px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.row-check {
    width: 100%;
    /*background-color: #eee;*/
    background-color: #d4f9ff;
    border-radius: 15px;
    color: black;
}

.item-name {
    font-weight: 500;
}

.item-desc {
    color: #777;
}

#email {
    width: 100%;
    max-width: 372px;
    border-radius: 15px;
    /*background-color: #eee;*/
    background-color: #d4f9ff;
    border-color: transparent;
    padding: 8px 21px;
    outline: none;
}

#remarks {
    min-height: 70px;
    width: 100%;
    border-radius: 15px;
    /*background-color: #eee;*/
    background-color: #d4f9ff;
    border-color: transparent;
    padding: 8px 21px;
    outline: none;
}

.btn-update, .btn-update:hover, .btn-update:active, .btn-update:visited {
    background-color: #2062ff;
    border-color: #2062ff;
    color: white;
    padding: 8px 32px;
}
/* For unsubscribe page: END */