@charset "UTF-8";
/**
 * ================================
 * 
 * override-top.css
 * 
 * ================================
 * 
 */

.top-icon {
  
}
/* instagram */
.insta {
    color: #FFF;
    border-radius: 7px;
    position: relative;
    display: inline-block;
    height: 60px;
    padding: 5px 20px 5px 50px;
    text-align: center;
    font-size: 25px;
    line-height: 50px;
    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    overflow: hidden;
    text-decoration: none;
}
.insta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
    background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}
.insta::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    width: 30px;
    height: 30px;
    background-image: url(../../../images/instagram_icon.svg);
}
.insta a, .insta a:hover {
    color: #fff;
}
.insta span {
    display:inline-block;
    position: relative;
    transition: .5s
}
.insta span:hover{
  transform: rotateX(360deg);
}