/*----------------------
c-btn
----------------------*/

.c-btn {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    color: #fff;
    width: 300px;
    height: 60px;
    border-radius: 30px;
    background: #da518e;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.c-btn--flip {
    background-color: #fff;
    color: #DA518E;
    border: 2px solid #DA518E;
}

.c-btn.c-btn--xl {
    width: 360px;
}

.c-btn::before {
    content: "";
    position: absolute;
    background-image: url(../../img/common/btn-icon.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 18.97px;
    height: 17.37px;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
}
.c-btn::after {
    content: "";
    position: absolute;
    background-image: url(../../img/common/btn-arrow.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 23px;
    height: 23px;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
}

.c-btn--flip:before  {
    background-image: url(../../img/common/btn-icon-flip.png);

}
.c-btn--flip:after  {
    background-image: url(../../img/common/btn-arrow-flip.png);


}

@media screen and (max-width: 767px)  {
    .c-btn {
        font-size: 14px;
        width: 260px;
        height: 55px;
		font-size: 16px;
    }
    
    .c-btn::before {
        width: 15px;
    }
    .c-btn::after {
        width: 18px;
    }

    .c-btn.c-btn--xl {
        width: 300px;
    }
}