.m-container {
    max-width: 520px;
    margin: 0px auto;
    padding: 0px 10px;
}

.header {
    width: 100%;
    padding: 20px 0px 0px 0px;
    position: relative;
    display: flex;
    justify-content: center;
}

.header .back-top  {
    position: absolute;
    top: 30px;
    left: 0px;
    height: 50px;
    width: 50px;
}

.header .back-top img {
    width: 100%;
    height: 100%;
}

.header .logo-header {
    width: 230px;
    height: auto;
    margin-bottom: 10px;
}

.header .logo-header img {
    width: 100%;
    height: auto;
}

.main .the-content {
    max-height: 79vh;
    height: 100%;
    overflow: auto;
    -ms-overflow-style: none;
    overflow-y: scroll;
}

.main .the-content::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 3px #F5F5F5;
	background-color: transparent;
}

.main .the-content::-webkit-scrollbar
{
	width: 3px;
	background-color: transparent;
}

.main .the-content::-webkit-scrollbar-thumb
{
	background-color: #FC8F06;
	border: 2px solid #FC8F06;
}

@media screen and (max-width: 768px) {
    html, body {
        margin: 0;
        padding: 0px;
        width: 100%;
        height: 100%;
        overflow: scroll;
        box-sizing: border-box;
        position: relative;
    }

    .wp-site {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        padding: 0px;
    }

    .m-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header .back-top {
        position: absolute;
        top: 15px;
        left: 0px;
        height: 35px;
        width: 35px;
    }

    .main {
        padding-bottom: 30px;
    }
    
    .main .the-content {
        max-height: unset;
        height: 78dvh;
    }

    .header {
        padding: 15px 0px 5px 0px;
    }

    .header .logo-header {
        width: 180px;
    }
}