.typeMask{
    display: none;
    margin-top: 30px;
    width: 100%;
    height: 24px;

    cursor: pointer;

    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 720px){
    .typeMask{
        display: block;
    }
}

.typeMask::-webkit-scrollbar{
    display: none;
}

.typeDiv{
    white-space: nowrap;
    margin-left: 10px;
}

.typeBox{
    display: inline-block;
    margin-right: 7px;
    height: 20px;

    color: white;
    font-size: 15px;
    letter-spacing: -0.53px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.typeBoxActive{
    color: rgb(9, 200, 219);
    font-size: 16px;

    border-bottom: 4px solid rgb(9, 200, 219);
}

.mobileContentDiv{
    display: none;
    width: 360px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
}
@media (max-width: 720px){
    .mobileContentDiv{
        display: block;
    }
}

.mobileStickers{
    display: none;
}

.mobileCaricatures{
    display: block;
}

.mobileCaricatureBox{
    width: 320px;
    height: 452px;
    margin: 10px;
    padding: 10px;

    box-shadow: 0 1px 3px 0 rgba(0, 0 ,0 ,0.15);
    border-radius: 2px;
    background-color: white;
}

.mobileCaricaturesImg{
    width: 100%;
    height: 100%;
}

.mobileCaricatureBox:hover{
    box-shadow: 0 3px 8px 0 rgba(0, 0 ,0 ,0.1);
}

.mobileSearchStickers{
    display: none;
}

.mobileSearchCaricatures{
    display: none;
}

.mobileHotKeyDiv{
    width: 340px;
    height: 42px;
    margin-top: 10px;
    margin-left: 10px;

    white-space: nowrap;
    
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobileHotKeyDiv::-webkit-scrollbar{
    display: none;
}


.searchTypeDiv{
    display: none;
    text-align: center;
}
@media (min-width: 720px){
    .searchTypeDiv{
        display: none;
    }
}

.toTop{
    position: fixed;
    right: 30px;
    bottom: 70px;

    width: 50px;
    height: 50px;
    border-radius: 25px;

    background-color: rgba(0, 0, 0, 0.5);
    color: rgb(254, 180, 130);

    text-align: center;
    font-size: 30px;

    cursor: pointer;
}