#scc-converter-container {
    min-height: 388px;
    margin: 0 auto;
    padding: 0 35px;
    position: relative;

}

.scc-converter-container {
    max-width: 400px;
    margin: 0 auto;
}

.scc-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.coins-calc-img {
    width: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 20px;
    left: 0px;
    z-index: 1;
}

.scc-wrapper {
    position: relative;
    width: auto;
    padding: 30px 45px 45px;
    background: #EBF1FF;
    border-radius: 20px;
}

.scc-bg-wrapper {
    position: absolute;
    bottom: 20px;
    left: -40px;
    width: calc(100% + 80px);
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    z-index: 0;
}

.scc-title {
    font-size: 28px;
    line-height: 35px;
    font-weight: bold;
    color: #000071;
    text-align: center;
}

.scc-quick-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}
@media screen and (max-width: 992px) and (min-width: 769px) {
    .scc-quick-buttons {
        flex-wrap: wrap;
    }
}

.scc-quick-buttons button {
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #fff;
    color: #000071;
    padding: 2px 6px;
    border: none;
    cursor: pointer;
    font-family: Lato;
    font-size: 18px;
    border: 2px solid #fff;
}

.scc-quick-buttons button.active {
    border-color: #2B65E8;
}

.scc-form {
    min-height: 130px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scc-input-group {
    position: relative;
}

.scc-input {
    width: 100%;
    height: 60px;
    font-size: 24px;
    padding: 0 15px;
    box-sizing: border-box;
    border: 2px solid #000071;
    border-radius: 7px;
    font-weight: bold;
    font-family: Lato;
    color: #000071;
}

.scc-select-button {
    border-radius: 5px;
    display: flex;
    align-items: center;
    background-color: #2B65E8;
    color: white;
    padding: 12px 15px;
    border: none;
    cursor: pointer;
    font-family: Lato;
    font-size: 20px;
    font-weight: bold;
}

.scc-select-button:after {
    content: "\25BC";
    font-size: 10px;
    margin-left: 5px;
}

.scc-select-button.active:after {
    transform: rotate(180deg)
}

.scc-select-wrapper {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.scc-dropdown {
    position: absolute;
    width: 250px;
    top: 65px;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    z-index: 999999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    display: none
}

.scc-dropdown::-webkit-scrollbar {
    width: 6px !important
}

.scc-dropdown::-webkit-scrollbar-thumb {
    background: #2563eb !important;
    border-radius: 3px !important
}

.scc-dropdown.active {
    display: block;
}

.scc-dropdown-search {
    padding: 10px;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.scc-dropdown-search input {
    width: 100%;
    padding: 10px;
    border: 1px solid #000071;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.scc-dropdown-item {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.scc-dropdown-item:hover {
    background: #eee;
}

.scc-dropdown-item img {
    width: 20px;
    margin-right: 10px;
}

.scc-cta {
    align-self: center;
    min-width: 200px;
    background-color: #2B65E8;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 30px;
    font-size: 24px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .scc-converter-container {min-width: 100%;}
    .scc-bg-wrapper { display: none; }
    .coins-calc-img { display: none; }
    #scc-converter-container { padding: 0; width: 100%;}
    .scc-wrapper { padding: 30px 15px; }

}