@font-face {
    font-family: 'DM Sans';
    src: url('../font/DMSans-Bold.woff2') format('woff2'),
    url('../font/DMSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../font/DMSans-Medium.woff2') format('woff2'),
    url('../font/DMSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../font/DMSans-Regular.woff2') format('woff2'),
    url('../font/DMSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans';
}

.box-banner{
    max-width: 320px;
    padding: 20px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background: #fff;
    position: relative;
}
.banner-top{
    display: flex;
    flex-direction: row;
}
.logo{
    width: 75px;
    height: 75px;
    border-radius: 20%;
    -webkit-border-radius: 20%;
    -moz-border-radius: 20%;
    -ms-border-radius: 20%;
    -o-border-radius: 20%;
    margin-right: 10px;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}
.play-store{
    width: 20px;
    height: 20px;
}
.text-body{
    width: 100%;
}
.text-middle{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.text-middle a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #006000;
}
.text-middle a:first-child{
    font-size: 17px;
    font-weight: 600;
}
.price{
    color: #8B93A5;
}
.banner-top{
    margin-bottom: 10px;
}
.down{
    background: #e00034;
    width: 100%;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
    -moz-transition: 0.5s all ease-in-out;
    -ms-transition: 0.5s all ease-in-out;
    -o-transition: 0.5s all ease-in-out;
    margin-top: 5px;
    color: #fff;
}
.down:hover{
    background: #8B93A5;
}
.logo-head{
    font-size: 20px;
    font-weight: 500;
}
i::before{
    content: '';
    background: url("../img/smb-logo.svg");
    width: 14px;
    height: 14px;
    display: block;
}
i{
    width: 18px;
    height: 18px;
    box-shadow: inset 0 0 2px 1px #ffd43d;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ads{
    display: flex;
    position: absolute;
    top: 5px;
    right: 5px;
    text-decoration: none;
}
.ads p{
    opacity: 0;
    margin-right: 10px;
    visibility: hidden;
    transition: 0.5s all ease-in-out;
    font-size: 14px;
    color: #000;
}
.ads:hover p{
    opacity: 1;
    visibility: visible;
}