@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic);
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

body {
    min-width: 320px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -webkit-backface-visibility: hidden;
    position: relative;
    padding: 50px 20px;
    background: white;
    color: #111;
}

body.dark-theme {
    background: #0a2b3a;
    color: #fff;
}

.center {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.announce {
    margin-left: auto;
    margin-right: auto;
}

.pricing {
    text-align: center;
    font-size: 14px;
    padding-left: 0;
    margin-bottom: 30px;
    font-family: "Lato";
    border: 1px solid #f0f0f0;
    color: #777;
}

.pricing.dark-theme {
    border: 1px solid #f0f0f0;
    color: #dbd4d4;
}

.pricing img {
    display: block;
    margin: auto;
    width: 32px;
}

.pricing li:first-child,
.pricing li:last-child {
    padding: 20px 13px;
}

.pricing li {
    list-style: none;
    padding: 13px;
}

.pricing li+li {
    border-top: 1px solid #f0f0f0;
}

.pricing big {
    font-size: 32px;
}

.pricing h3 {
    margin-bottom: 0;
    font-size: 36px;
}

.pricing span {
    font-size: 12px;
    font-weight: normal;
    color: #999;
}

.pricing span.dark-theme {
    color: #dbd4d4;
}


.pricing li:nth-last-child(2) {
    padding: 30px 13px;
}

.pricing button {
    width: auto;
    margin: auto;
    font-size: 15px;
    font-weight: bold;
    border-radius: 50px;
    padding: 9px 24px;
    opacity: 1;
    transition: opacity 0.2s ease;
    border: none;
    outline: none;
    color: #fff;
    background: #aaa;
}


.pricing button:hover {
    opacity: 0.9;
}

.pricing button:active {
    box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.1);
}

/* pricing color */
.p-green big,
.p-green h3 {
    color: #4c7737;
}

.p-green big.dark-theme,
.p-green h3.dark-theme {
    color: #609b44;
}

.p-green button {
    background: #4c7737;
}

.p-yel big,
.p-yel h3 {
    color: #ffbb42;
}

.p-yel button {
    background: #ffbb42;
}

.p-red big,
.p-red h3 {
    color: #e13c4c;
}

.p-red button {
    background: #e13c4c;
}

.p-blue big,
.p-blue h3 {
    color: #4187f6;
}

.p-blue button {
    background: #4187f6;
}

/* Theme Toggle CSS */

.theme-checkbox {
    opacity: 0;
    position: absolute;
}

.theme-checkbox-label {
    background-color: #111;
    width: 50px;
    height: 26px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
}

.fa-moon {
    color: #f1c40f;
}

.fa-sun {
    color: #f39c12;
}

.theme-checkbox-label .ball {
    background-color: #fff;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    transition: transform 0.2s linear;
}

.theme-checkbox:checked+.theme-checkbox-label .ball {
    transform: translateX(24px);
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content/Box */
.modal .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.modal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modal .close:hover,
.modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal label {
    display: inline-block;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 18px;
    color: #333;
    height: 20px;
    width: 200px;
    margin-top: 10px;
    margin-left: 10px;
    text-align: right;
    margin-right: 15px;
    float: left;
}

.modal input {
    height: 20px;
    width: 300px;
    border: 1px solid #000;
    margin-top: 10px;
}

.form-group {
    width: fit-content;
    margin: 15px auto;
}