.check-valid-crypto-container {
    margin-bottom: 100px;
    line-height: 1.8em;
}
.check-valid-crypto-container .title {
    font-size: 45px;
    font-weight: 800;
    line-height: normal;
    color: #0d0d3f;
    margin-bottom: 30px;
}
.check-valid-crypto-container .search-container {
    position: relative;
    margin-bottom: 20px;
}
.check-valid-crypto-container .search-container .search-input {
    position: relative;
    z-index: 100;
    height: 60px;
    padding: 20px;
    height: 60px;
    border-radius: 100px;
    border: 1px solid #0F1137;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s;
}
.check-valid-crypto-container .search-container .search-input:hover,
.check-valid-crypto-container .search-container .search-input:focus {
    border: 1px solid #0568EA;
}
.check-valid-crypto-container .search-container .search-button {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 200;
    border-top-left-radius: 0px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 0px;
    background: #0568EA;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0;
    border: none;
    width: 60px;
    height: 60px;
    outline: none;
    padding: 10px;
}
.check-valid-crypto-container .search-container .search-button:hover {
    background-color: #0F1137;
}
.check-valid-crypto-container .search-container .search-button svg {
    fill: #fff;
    width: 30px;
    transition: all 0.5s;
}
.check-valid-crypto-container .search-container .search-button:hover svg {
    fill: #F1F1F1;
}
.check-valid-crypto-container .error-container {
    width: 100%;
    padding: 14px 30px 14px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    background-color: #0d0d3f;
    border-radius: 5px;
    display: none;
}
.check-valid-crypto-container .ajax-loader-container {
    padding: 30px 0 50px;
    text-align: center;
    display: none;
}
.check-valid-crypto-container .ajax-loader-container img.ajax-loader {
    max-width: 80%;
}
.result-check-valid-crypto-container {
    margin: 30px 0;
    font-size: 16px;
    color: #0d0d3f;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.result-check-valid-crypto-container .hash {
    padding: 7px 30px;
    border: none;
    border-radius: 5px;
    width: calc(70% - 30px);
    margin: 0 30px 30px 0;
    background: #ededf3;
}
.result-check-valid-crypto-container .hash .hash-title {
    margin-bottom: 5px;
}
.result-check-valid-crypto-container .hash .hash-value {
    font-size: 18px;
    word-wrap: break-word;
}
.result-check-valid-crypto-container .total-result {
    padding: 9px 20px;
    border: none;
    border-radius: 5px;
    width: 30%;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #ededf3;
}
.result-check-valid-crypto-container .total-result .left {
    width: 30%;
}
.result-check-valid-crypto-container .total-result .left .value {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
.result-check-valid-crypto-container .total-result .right {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.result-check-valid-crypto-container .total-result .right .value-text {
    font-weight: 500;
}
.result-check-valid-crypto-container .total-result .right .static-value-variants {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 13px;
}
.result-check-valid-crypto-container .total-result .right .static-value-variants .static-value-item {
    margin-right: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.result-check-valid-crypto-container .total-result .right .static-value-variants .static-value-item .icon {
    margin-right: 5px;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
}
.result-check-valid-crypto-container .total-result .right .static-value-variants .static-value-item .icon.icon-green,
.result-check-valid-crypto-container.green .description .side-image {
    background-color: #30aa06;
}
.result-check-valid-crypto-container .total-result .right .static-value-variants .static-value-item .icon.icon-yellow,
.result-check-valid-crypto-container.yellow .description .side-image  {
    background-color: #fba839;
}
.result-check-valid-crypto-container .total-result .right .static-value-variants .static-value-item .icon.icon-red,
.result-check-valid-crypto-container.red .description .side-image  {
    background-color: #f52a2a;
}
.result-check-valid-crypto-container .total-result .right .static-value-variants .static-value-item .text {
    /* margin-right: 7px; */
    margin: 0;
}

.result-check-valid-crypto-container.green .total-result .left .value,
.result-check-valid-crypto-container.green .total-result .right .value-text {
    color: #30aa06;
}
.result-check-valid-crypto-container.yellow .total-result .left .value,
.result-check-valid-crypto-container.yellow .total-result .right .value-text {
    color: #fba839;
}
.result-check-valid-crypto-container.red .total-result .left .value,
.result-check-valid-crypto-container.red .total-result .right .value-text {
    color: #f52a2a;
}
.result-check-valid-crypto-container .description {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    padding: 7px;
    width: 100%;
    margin: 0;
    border: none;
    border-radius: 5px;
    background: #ededf3;
}
.result-check-valid-crypto-container .description .side-image {
    padding: 0;
    border-radius: 5px;
    width: calc(20% - 30px);
    margin-right: 30px;
    background-size: 100% auto;
    background-repeat: repeat;
}
.result-check-valid-crypto-container .description .text-container {
    width: 80%;
    padding: 25px 0 0;
    line-height: normal;
}
.result-check-valid-crypto-container .description .text-container .full-block {
    width: 100%;
    margin-bottom: 30px;
}
.result-check-valid-crypto-container .description .text-container .mini-blocks-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.result-check-valid-crypto-container .description .text-container .mini-blocks-container .mini-block {
    width: calc(33.3% - 30px);
    margin: 0 30px 30px 0;
}
.result-check-valid-crypto-container .description .text-container .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: inherit;
}
.result-check-valid-crypto-container .description .text-container .text {
    font-size: 16px;
}
.result-check-valid-crypto-container .description .text-container .sub-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
}
.result-check-valid-crypto-container .custom-message {
    padding: 15px 30px;
    width: 100%;
    margin: 0 0 30px 0;
    border: none;
    border-radius: 5px;
    background: #ededf3;
}






@media (max-width: 1200px) {
    .result-check-valid-crypto-container .total-result {
        flex-direction: column;
    }
    .result-check-valid-crypto-container .total-result .left {
        width: 100%;
    }
    .result-check-valid-crypto-container .total-result .right {
        width: 100%;
        align-items: center;
    }
    .result-check-valid-crypto-container .hash {
        padding: 19px 30px;
    }
}


@media (max-width: 992px) {
    .result-check-valid-crypto-container .description .text-container .mini-blocks-container .mini-block {
        width: calc(50% - 30px);
    }
    .result-check-valid-crypto-container .hash {
        padding: 17px 30px;
        width: calc(65% - 30px);
    }
    .result-check-valid-crypto-container .total-result {
        width: 35%;
    }
}


@media (max-width: 850px) {
    .result-check-valid-crypto-container .hash {
        padding: 7px;
        width: 100%;
        margin: 0 0 10px 0;
        text-align: center;
    }
    .result-check-valid-crypto-container .total-result {
        width: 100%;
        margin: 0 0 15px 0;
    }
}


@media (max-width: 600px) {
    .check-valid-crypto-container {
        padding: 0 10px;
    }
    .result-check-valid-crypto-container .description .side-image {
        width: calc(20% - 10px);
        margin-right: 10px;
    }
    .result-check-valid-crypto-container .description .text-container {
        padding: 15px 0 0;
        line-height: 1.3;
    }
    .result-check-valid-crypto-container .description .text-container .full-block {
        margin-bottom: 20px;
    }
    .result-check-valid-crypto-container .description .text-container .mini-blocks-container .mini-block {
        width: calc(50% - 15px);
        margin: 0 15px 15px 0;
    }
    .result-check-valid-crypto-container .description .text-container .mini-blocks-container .mini-block:nth-child(even) {
        width: 50%;
        margin: 0 0 15px 0;
    }
    .check-valid-crypto-container .search-container .search-input {
        font-size: 18px !important;
        padding: 12px 75px 12px 20px !important;
    }
    .result-check-valid-crypto-container .description .text-container .title {
        font-size: 18px;
    }
    .check-valid-crypto-container .title {
        font-size: 32px;
        margin-bottom: 20px;
    }
}


@media (max-width: 450px) {
    .result-check-valid-crypto-container .description .text-container .mini-blocks-container .mini-block,
    .result-check-valid-crypto-container .description .text-container .mini-blocks-container .mini-block:nth-child(even) {
        width: 100%;
        margin: 0 0 15px 0;
    }
}