/* Close button for search box */
.sns-searchwrap button.close-search {
    font-size: 0px;
    padding: 0 0;
    height: 100%;
    width: 80px;
    position: absolute;
    right: 80px;
    top: 0px;
    z-index: 1;
    border: none;
    background: none;
    cursor: pointer;
}

@media (max-width: 767px) {
    .sns-searchwrap button.close-search {
        width: 50px;
        right: 0px;
    }
}

.sns-searchwrap button.close-search:before {
    position: absolute;
    top: 50%;
    right: 50%;
    margin: -12px -12px 0 0;
    content: "\f2d7";
    display: inline-block;
    font-family: Ionicons;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    font-size: 20px;
    color: #333;
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.sns-searchwrap button.close-search:hover:before {
    color: #1d1f4f;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.sns-searchwrap button.close-search:hover {
    box-shadow: none;
}