
.flexitype-search {
    .search {
        display: flex;
    }
    &-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        i {
            cursor: pointer;
            position: relative;
            z-index: 9;
            display: inline-block;
            color: #242424;
            font-size: 20px;
        }
        svg {
            max-width: 20px;
            height: auto;
            cursor: pointer;
        }
        .flaticon {
            display: block !important;
            line-height: 0;
        }
    }
    &-box {
        position: fixed;
        bottom: 0;
        width: 100%;
        left: 0;
        right: 0;
        height: 0;
        background: #242424;
        z-index: 9999;
        transition: all 0.5s ease-out;
        overflow: hidden;
        form {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 55%;
            transition: all 0.5s ease-out;
            display: flex;
            align-items: center;
        }
        input {
            background: #FFFFFF;
            color: #242424;
            border: 0;
            width: 100%;
            height: 60px;
            outline: none;
            box-shadow: none;
            transition: 0.4s;
            padding: 0 20px;
        }
        button {
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: none;
            border: none;
            outline: none;
            transition: 0.4s;
            cursor: pointer;
            background: #FFFFFF;
            width: 50px;
            height: 60px;
            i {
                font-size: 22px;
                color: #242424;
                transition: 0.4s;
            }
            svg {
                height: auto;
                max-width: 16px;
                path {
                    fill: #242424;
                    transition: 0.4s;
                }
            }
        }
        &.active {
            height: 100%;
            top: 0;
            &.flexitype-search-box form {
                transform: translate(-50%, -50%) scale(1);                                
            }
        }
        &-icon {
            position: absolute;
            right: 50px;
            top: 50px;
            cursor: pointer;				
            transform: rotate(0deg);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: center;
            &:hover {
                animation: rotate 0.4s ease 0s;			
            }
            i {
                cursor: pointer;
                position: relative;
                z-index: 9;
                font-size: 22px;
                color: #FFFFFF;
            }
            svg {
                cursor: pointer;
                height: auto;
                max-width: 14px;
                path {
                    fill: #FFFFFF;
                }
            }
        }
    }
}
@keyframes rotate {
    100% {
        transform: rotate(90deg);
    }
}