.btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    min-width: 3.5rem;
    height: 3.5rem;
    border: 1px solid #bcbcbc;
    background: transparent;
    cursor: pointer;
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 0;
    padding: 0 1rem;
    font-family: inherit;
}

.btn.btn-white {
    background: #fff;
    border-color: #fff;
}

.btn.btn-arrow .arrow {
    background: url(../../../img/common/icon/icon-arrowright.svg) 50% 50% no-repeat;
    display: inline-block;
    vertical-align: middle;
    width: 1rem;
    height: 1rem;
    -webkit-background-size: contain;
    background-size: contain;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn.btn-arrow .label {
    font-size: 1rem;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    height: 1rem;
    line-height: 1;
    white-space: nowrap;
    padding: 0 2rem;

}


.no-mobile .btn-arrow .label {
    -webkit-transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    max-width: 0;
    padding: 0;
}


.no-mobile .btn.btn-arrow:hover .label {
    max-width: 5rem;
    padding: 0 2rem;
    opacity: 1;
}


.btn.btn-icon svg {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.no-mobile .btn.btn-icon,
.no-mobile .btn.btn-icon svg path {
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.no-mobile .btn.btn-icon:hover {
    background: #222222;
    border-color: #222222;
}

.no-mobile .btn.btn-icon:hover svg path {
    stroke: #fff;
}


.btn.btn-icon.btn-white {
    border-color: rgba(255,255,255,.3);
    background: transparent;
}
.no-mobile .btn.btn-icon.btn-white:hover {
    background: #fff;
    border-color: #fff;
}

.no-mobile .btn.btn-icon.btn-white:hover svg path {
    stroke: #000;
}


.btn.btn-icon.btn-prev svg,
.btn.btn-icon.btn-next svg {
    display: block;
    height: auto;
    width: 0.8125rem;
}

.no-mobile .btn.btn-icon.btn-prev svg,
.no-mobile .btn.btn-icon.btn-next svg {
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.no-mobile .btn.btn-icon.btn-prev:hover svg {
    margin-left: -8%;
}
.no-mobile .btn.btn-icon.btn-next:hover svg {
    margin-left: 8%;
}

@keyframes btn-prev-arrow {
    0%,100% {
        margin-left: 0;
    }
    50% {
        margin-left: -7.5%;
    }
}

@keyframes btn-next-arrow {
    0%,100% {
        margin-left: 0;
    }
    50% {
        margin-left: 7.5%;
    }
}

@media screen and (max-width:1080px) {

    .btn.btn-arrow .label{opacity: 0;max-width: 0;padding: 0;}
    /*.btn{min-width: 2.5rem;height: 3.155rem}*/
    .home-carousel .carousel-nav {
        top: auto !important;
        bottom: 135px;
    }
}

@media screen and (max-width:480px) {

    .btn {
        height: 3.230769230769231rem;
        min-width: 3.230769230769231rem;
    }

    .btn.btn-arrow .arrow {
        width: 0.85rem;
        height: .85rem;
    }
    .btn.btn-arrow .label {
        font-size: 0.846153846153846rem;
    }
}