:root {
    --mainColor: #024f99;
}

* {
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}


html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.wrapper {
    margin: 0;
    padding: 0;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.navbar {
    position: relative;
    top: 0;
    width: 100%;
    margin-bottom: 15px;
    height: 50px;
    background: #024f99;
}

.navbar ul {
    list-style-type: none;
    height: 100%;
    position: relative;
}

.navbar ul li {
    display: inline-block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.right {
    float: right;
}

.navbar ul li form {
    position: relative;
    width: 250px;
    padding: 5px;
    height: 50px;
}

.navbar ul li form input {
    padding: 5px 25px 5px 5px;
    position: relative;
    top: 50%;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #dadce0;
    border-radius: 10px;
    outline: none;
}

.navbar ul li a:not(.search) {
    padding: 16px;
    text-decoration: none;
    font-family: 'Heebo', sans-serif;
    color: white;
}

.search {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    right: 0;
    padding: 10px;
}

.navbar ul li a:hover {
    background: #0857a4;
}

.head {
    font-family: 'Heebo', sans-serif;
    font-size: 1.1rem;
}

.body .resultBox {
    width: 100%;
    height: auto;
    min-height: 50px;
}

.body .resultBox .result {
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
    border: 1px solid #dadce0;
    position: relative;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 15%);
    display: flex;
}

.body .resultBox .result img {
    max-height: 110px;
    max-width: 110px;
    top: 50%;
    transform: translateY(-50%);
    position: relative;
    left: 5px;
    background: #333333;
    border-right: 1px solid #dadce0;
}

.body .resultBox .result .resultTextBox {
    width: 70%;
    height: 65%;
    position: relative;
    left: 15px;
    padding: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.body .resultBox .result .resultTextBox .resultText {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Heebo', sans-serif;
    font-size: 0.9rem;
}

.body .resultBox .result .resultTextBox p {
    color: #111;
    margin: 0 0 10px 0;
}

.body .resultBox .result .infoBox {
    width: 250px;
    height: 120px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-left: 1px solid #dadce0;
    right: 0;
}

.body .resultBox .result .infoBox .number a {
    color: #333;
}

.body .resultBox .result .infoBox .number {
    position: absolute;
    text-align: center;
    text-decoration: underline;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    top: 15px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.body .resultBox .result .infoBox .number i {
    color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

.body .resultBox .result .infoBox .button {
    height: 40px;
    width: 60%;
    background: #b5d638;
    cursor: pointer;
    border-radius: 15px;
    position: relative;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -70%);
}

.body .resultBox .result .infoBox .button p {
    color: white;
    font-family: 'Poppins', sans-serif;
    position: relative;
    top: 50%;
    left: 0%;
    text-align: center;
    transform: translateY(-50%);
}

@media only screen and (max-width: 800px) {

    .body .resultBox .result .infoBox {
        display: none;
    }

    .body .resultBox .result .resultTextBox .resultText {
        font-size: 0.7rem;
    }
}