@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

:root {
    --color-main: rgba(32, 34, 40, 1);
    --color-main-bright: rgba(88, 219, 171, 1);
    --color-1: color-mix(in srgb, var(--color-main) 95%, var(--color-main-bright));
    --color-2: color-mix(in srgb, var(--color-main) 75%, var(--color-main-bright));
    --color-3: color-mix(in srgb, var(--color-main) 50%, var(--color-main-bright));
    --color-4: color-mix(in srgb, var(--color-main) 20%, var(--color-main-bright));
    --color-5: color-mix(in srgb, var(--color-main) 5%, var(--color-main-bright));
}

* {
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    background-color: var(--color-main);
    color: var(--color-main-bright);
    font-family: 'Titillium Web', sans-serif;
}

#wrapper {
    width: 90%;
    max-width: 1280px;
    margin: auto;
    text-align: center;
}

a {
    color: var(--color-4);
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 auto;
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 32px;
    font-weight: 300;
}

h3 {
    font-size: 26px;
}

p {
    color: white;
    margin: 0;
}

s {
    color: #aaa;
    font-weight: 300;
    font-size: 14px;
    display: block;
}

table {
    margin: auto;
}

td {
    color: #ccc;
    padding: 2px 20px;
}

td:nth-child(1) {
    font-weight: bold;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

a.buy {
    border: 0;
    background-color: var(--color-4);
    padding: 10px;
    font-family: 'Titillium Web', sans-serif;
    cursor: pointer;
    display: block;
    margin: auto;
    text-align: center;
    width: 150px;
    font-size: 14px;
    color: var(--color-main);
    text-decoration: none;
}

a.buy:hover {
    background-color: var(--color-main-bright);
}

.text-small {
    font-size: 12px;
    color: #ccc;
    text-align: center;
}


ul {
    list-style-type: none;
    margin: 10px 0;
    padding: 0;
}


ul.pros {
    color: lime;
}

ul.cons {
    color: red;
}

ul.pros li:before {
    content: "✓";
    margin-right: 10px;
}

ul.cons li:before {
    content: "✖";
    margin-right: 10px;
}

.panel-container {
    margin: 20px 0;
}

.panel {
    width: 100%;
    background-color: var(--color-1);
    height: 96px;
    border-radius: 30px;
    display: flex;
    transition: 0.3s ease background-color;
    cursor: pointer;
}

.br-30 {
    border-radius: 30px;
}

.panel.open {
    background-color: var(--color-2);
    border-radius: 30px 30px 0 0;
}

.panel.open .chevron {
    transform: rotate(180deg);
}

.panel:hover {
    background-color: var(--color-2);
}

.panel-description {
    width: 100%;
    background-color: var(--color-1);
    margin: 0;
    border-radius: 0 0 30px 30px;
}

.panel-square {
    width: 96px;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px;
}

.flex {
    display: flex;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.panel-50 {
    width: 50%;
    text-align: left;
}

.panel-25 {
    width: 25%;
}

.panel-75 {
    width: 75%;
    text-align: left;
    padding: 20px;
}

.panel-50 h3 {
    padding-top: 13px;
    margin: 0;
}

.img-square {
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 5px;
}

.star {
    width: 16px;
    height: 16px;
    background-image: url(img/star.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.star.empty {
    background-image: url(img/star_empty.png);
}

/* TOGGLE SWITCH */
.toggleSwitch span span {
    display: none;
}  

.toggleSwitch {
    user-select: none;
    display: inline-block;
    height: 48px;
    position: relative;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    width: 100%;
    border-radius: 25px;
    font-weight: bold;
    background-color: var(--color-2);
}
.toggleSwitch * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.toggleSwitch input:focus ~ a,
.toggleSwitch input:focus + label {
    outline: none;
}
.toggleSwitch label {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
}
.toggleSwitch input {
    position: absolute;
    opacity: 0;
    z-index: 5;
}
.toggleSwitch > span {
    position: absolute;
    left: 0;
    width: calc(100% - 6px);
    margin: 0;
    text-align: left;
    white-space: nowrap;
    margin:0;
}
.toggleSwitch > span span {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    display: block;
    width: 50%;
    margin-left: 50px;
    text-align: left;
    font-size: 0.9em;
    width: auto;
    opacity: 1;
    width: 40%;
    text-align: center;
    line-height:48px;
}
.toggleSwitch a {
    position: absolute;
    right: 50%;
    z-index: 4;
    display: block;
    top: 0;
    bottom: 0;
    padding: 0;
    left: 0;
    width: 50%;
    background-color: var(--color-4);
    border-radius: 25px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.toggleSwitch > span span:first-of-type {
    color: var(--color-1);
    opacity: 1;
    left: 0;
    margin: 0;
    width: 50%;
}
.toggleSwitch > span span:last-of-type {
    left:auto;
    right:0;
    color: var(--color-4);
    margin: 0;
    width: 50%;
}
.toggleSwitch > span:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: -2px;
    border-radius: 30px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.toggleSwitch input:checked ~ a {
    left: calc(50% - 3px);
}

.toggleSwitch input:checked ~ span span:first-of-type {
    left:0;
    color: var(--color-4);
}
.toggleSwitch input:checked ~ span span:last-of-type {
    color: var(--color-1);
}


@media only screen and (max-width: 1100px) {
    
    .hide-phone {
      display: none;
    }
    .panel h3 {
        font-size: 18px;
    }

    .panel {
        flex-direction: column;
        height: auto;
        text-align: center;
    }
    .panel-description {
        flex-direction: column;
    }

    .panel-description .panel-25 > img {
        width: 90%;
        margin: 0 !important;
    }

    .panel-25, .panel-50, .panel-75, .panel-square {
        width: 100%;
        text-align: center;
        margin: 0;
    }
  }