*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    background: gray;
    font-family: 'Audiowide', cursive;
}

.body-container {
    width: 100%;
    height: 100vh;
    background-image: url('../images/pexels-pok-rie-1432680.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    outline: none;
    overflow: hidden;
    display: grid;
    position: relative;
}

.body-container-center {
    width: 600px;
    height: 90%;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 10px;
    align-self: center;
    justify-self: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
}

.big-string {
    font-size: 30px;
    color: black;
    text-align: center;
    width: 100%;
}

.register-box-container {
    width: 100%;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    position: relative;
}

.register-box-wrapper {
    width: 20%;
    height: 100px;
    background: rgba(0, 0, 0, 0.9);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.options-box-wrapper {
    width: 16%;
    height: 100px;
    background: rgba(0, 0, 0, 0.9);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.register-box-content,
.options-box-content {
    color: white;
    width: 100%;
    height: 90%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    cursor: pointer;
}

input {
    width: 40px;
    color: rgb(8, 194, 8);
    margin-left: 5px;
    text-align: center;
    background: none;
    outline: none;
    border: none;
    font-size: 24px;
    text-transform: uppercase;
    border-bottom: 1px solid green;
    z-index: 1000;
}

input:valid {
    border: none;
}


.options-box-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    gap: 20px;
}

.operation-place {
    color: green;
}

.result-box-container {
    width: 100%;
    height: 300px;
}

.result-box-container h3 {
    margin-top: 10px;
    text-align: center;
}

.result-boxes-container {
    display: none;
    justify-content: center;
    align-items: center;
    justify-items: center;
    margin-top: 10px;
}

.result-box {
    width: 30%;
    height: 100px;
    background: rgba(0, 0, 0, 0.9);
    margin: 10px;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 30px;
}

.data-type-wrapper {
    display: grid;
    grid-template-columns: 60% auto 28%;
    font-size: 14px;
    position: absolute;
    top: -30px;
    background: black;
    width: 100%;
    max-height: 30px;
    overflow: hidden;
}

.data-type-wrapper div {
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursive-parent {
    background: rgb(2, 0, 36);
    background: linear-gradient(125deg, green 50%, rgb(9, 9, 121) 40%, black 10%)
}

.cursive {
    background: white !important;
    transform: skewY(-70deg);
    width: 100% !important;
    height: 30px !important;
}

.choosed-data-type-box {
    background: green;
}

.data-type-box:active {
    border-style: none;
}

.result-box input {
    width: 80px;
    border-bottom: 1px solid green;
}

.result-box-arrow {
    width: 30%;
    height: 100px;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    text-align: center;
}

.confirm-operation {
    background: black;
    color: white;
    padding: 20px;
    font-size: 16px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    font-family: 'Audiowide', cursive;
    cursor: pointer;
}

/* custom  JS*/
.active {
    border: 5px solid green;
}

.active-option {
    border: 5px solid rgb(9, 45, 206);
}

.visible {
    display: flex !important;
}

.active-data-type {
    background: green;
}
/* SWAL*/
.swal2-container.swal2-center>.swal2-popup {
    background: black;
    color: white;
    position: relative;
}
.sweet-alert-result-wrapper{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.results-wrapper{
    display: flex;
    justify-content: center;
    gap: 100px;
}
.results-wrapper div{
    width: 120px;
    height: 100px;
    border: 3px solid green;
    display: flex;
    justify-content: center;
    align-items: center;
}
.results-wrapper span{
    margin-left: 8px;
}
.green-string{
    color: green;
}