body {
    padding:0;
    margin:0;
    font-family: "Poppins", sans-serif;
}

.this-or-this-choice-selector {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display:flex;
    flex-direction:row;
}

.this-or-this-choice-selector .this-or-this-choice {
    position:relative;
    height:100%;
    width:50%;
    background:#4292d7;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    cursor:pointer;
    transition: background 0.3s ease, width 1s ease, height 1s ease;
    overflow:hidden;
    min-height:100%;
}

.this-or-this-choice-selector .this-or-this-choice:nth-child(1){
    border-right:1px solid white;
}


.this-or-this-choice-selector .this-or-this-choice:hover {
    background:#295881;
}

.this-or-this-choice-selector .this-or-this-choice.weaker {
    background:#d74242;
}
.this-or-this-choice-selector .this-or-this-choice.stronger {
    background:#27bb68;
}

.this-or-this-choice-selector .this-or-this-choice .this-or-this-choice-value {
    text-transform: uppercase;
    color:white;
    font-weight:bold;
}
.this-or-this-choice-selector .this-or-this-choice .this-or-this-choice-counter {
    text-transform: uppercase;
    color:black;
    font-weight:bold;
    display:flex;
    flex-direction:row;
}
.this-or-this-choice-selector .this-or-this-choice .this-or-this-choice-counter span {
    display:none;
}

.this-or-this-container.answered .this-or-this-choice-selector .this-or-this-choice .this-or-this-choice-counter span {
    display:flex;
}

.this-or-this-container .this-or-this-next {
    position: fixed;
    bottom: 20px;
    left: 50%;
    z-index: 10;
    font-size: 50px;
    line-height: 50px;
    font-weight: bold;
    color: white;
    display: none;
    text-align: center;
    flex-direction: row;
    gap: 10px;
    transform: translateX(-50%);
}

.this-or-this-container.answered .this-or-this-next {
    display:flex;
}

.this-or-this-container.answered .this-or-this-next button {
    background: #4292d7;
    color: white;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 20px 40px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 25px;
    border-radius: 5px;
}

.this-or-this-container.answered .this-or-this-next button:hover {
    background:#295881;
}

.this-or-this-add-button {
    position: fixed;
    z-index: 20;
    top: 10px;
    right: 10px;
    background: transparent;
    color: white;
    box-shadow: none;
    border: none;
    padding: 10px 20px;
    font-size: 50px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-align:center;
    line-height:50px;
}

.this-or-this-add-button div {
    transition:all 0.3s ease;
    position:relative;
}

.this-or-this-add-button:hover div {
    transform:rotate(90deg);
    color:#000000;
}

.this-or-this-new-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:30;
    display:none;
}

.this-or-this-new-form.active {
    display:block;
}

.this-or-this-new-form .this-or-this-new-form-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index:1;
    top: 0;
    left: 0;
}

.this-or-this-new-form .this-or-this-new-form-container {
    width: 750px;
    height: auto;
    background: white;
    max-height: 100%;
    max-width: 100%;
    position:relative;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    z-index:2;
    padding:20px;
    display: flex;
    flex-direction: column;
}

.this-or-this-new-form .this-or-this-new-form-container .this-or-this-new-form-close {
    position: absolute;
    top: 10px;
    right: 10px;
    transform-origin: center center;
    height: 25px;
    width: 25px;
    cursor:pointer;
}

.this-or-this-new-form .this-or-this-new-form-container .this-or-this-new-form-close .this-or-this-new-form-close-content {
    position:relative;
}

.this-or-this-new-form .this-or-this-new-form-container .this-or-this-new-form-close span {
    position:absolute;
    top:50%;
    left:50%;
    height:3px;
    width:20px;
    background:black;
    display:block;
    transform-origin:center;
}

.this-or-this-new-form .this-or-this-new-form-container .this-or-this-new-form-close span:nth-child(1){
    transform:rotate(45deg) translate(-1px, 14px);
}

.this-or-this-new-form .this-or-this-new-form-container .this-or-this-new-form-close span:nth-child(2){
    transform:rotate(-45deg) translate(-14px, -1px);
}

.this-or-this-new-form .this-or-this-new-title {
    font-weight:bold;
}

.this-or-this-new-form .this-or-this-new-choices {
    display:flex;
    flex-direction:row;
    gap:10px;
    padding-top:10px;
    padding-bottom:10px;
    align-items:center;
}

.this-or-this-new-form .this-or-this-new-choices .this-or-this-new-choice {
    border:1px solid black;
    padding:10px;
    flex:1;
}

.this-or-this-new-form .this-or-this-new-footer {
    
}

.this-or-this-new-form .this-or-this-new-footer button {
    background: #4292d7;
    color: white;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 10px;
    transition:all 0.3s ease;
    cursor:pointer;
}

.this-or-this-new-form .this-or-this-new-footer button:hover {
    background:#295881;
}

@media (max-width:992px) {
    .this-or-this-choice-selector {
        flex-direction:column;
    }

    .this-or-this-choice-selector .this-or-this-choice {
        width:100% !important;
        min-height:auto;
    }

    .this-or-this-choice-selector .this-or-this-choice:nth-child(1){
        border-bottom:1px solid white;
    }


}


@media (max-width:768px) {
    .this-or-this-new-form .this-or-this-new-form-container {
        width:auto;
        align-items: center;
    }

    .this-or-this-new-form .this-or-this-new-choices {
        flex-direction:column;
    }

    .this-or-this-container.answered .this-or-this-next button {
        font-size:15px;
    }
}