html{
    height: 100%;
}

body {
    overflow: hidden;
}

#bgTop {
    width: 100%;
}

.content-bottom {
    width: 100%;
    height: 70%;
    position: fixed;
    bottom: 0px;
    text-align: center;
}

.content-title {
    position: fixed;
    top: 0px;
    width: 100%;
    text-align: center;
    margin-top: 10%;
}

.content-title h5 {
    font-weight: 600;
    color: #245aa4;
    margin: unset;
}

.content-title label {
    font-size: 16px;
    color: #6d6d6d;
}

.content-bottom .card {
    height: 100%;
    width: 100%;
    padding:  20px 20px;
    border-radius: 40px 40px 0px 0px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 30px 0 rgba(0, 0, 0, 0.19);
    background: linear-gradient(0deg, #7da7ff -100%, white 60%);
}

.content-bottom .card label {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: #ff5374;
}

.content-bottom .item-content{
    display: flex;
    justify-content: center;
}

.content-bottom #itemGroup{
    width: -webkit-fill-available;
    height: 100%;
    overflow: auto;
    position: absolute;
    padding-bottom: 100px;
    margin-top: 15px;
    padding-left: 40px;
    padding-right: 40px;
}

.content-bottom .item {
    display: block;
    height: 110px;
    border: 1px solid #7d7dbb;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 15px;
    padding: 20px;
    background: white;
}

.content-bottom .item:hover {
    cursor: pointer;
}

.content-bottom .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hide scrollbar for Chrome, Safari and Opera */
#itemGroup::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#itemGroup {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

@media only screen and (max-width: 1025px) {
    .content-title {
        margin-top: 25%;
    }
}

@media only screen and (max-width: 769px) {
    .content-title {
        margin-top: 23%;
    }
}

@media only screen and (max-width: 500px) {
    .content-title {
        margin-top: 27%;
    }
}
