.searchPanel .search-box {
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, .2);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.searchPanel .search-box.active {
    width: 100%;
}

.searchPanel .search-box input {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 50px;
    background: #fff;
    color: black;
    outline: none;
    padding: 0 60px 0 20px;
    font-size: 18px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.searchPanel .search-box input.active {
    opacity: 1;
}

.searchPanel .search-box input::placeholder {
    color: #a6a6a6;
}

.searchPanel .search-box .search-icon {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 60px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 22px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.searchPanel .search-box .search-icon.active {
    right: 5px;
    height: 50px;
    line-height: 50px;
    width: 50px;
    font-size: 20px;
    color: #fff;
    transform: translateY(-50%) rotate(360deg);
}

.searchPanel .t1 .cancel-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    color: var(---searchT1Clear);
    cursor: pointer;
    transition: all 0.5s 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
}

.searchPanel .t1 .cancel-icon.active {
    right: -40px;
    transform: translateY(-50%) rotate(360deg);
}

.searchPanel .t2 .cancel-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    color: var(---searchT1Clear);
    cursor: pointer;
    transition: all 0.5s 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
}

.searchPanel .t2 .cancel-icon.active {
    right: 120px;
    transform: translateY(-50%) rotate(360deg);
}

.searchPanel .search-box .search-data {
    text-align: center;
    padding-top: 7px;
    color: #fff;
    font-size: 18px;
    word-wrap: break-word;
}

.searchPanel .search-box .search-data.active {
    display: none;
}

.pageBody .searchPanel .search-box .search-icon {
    background: var(---searchT1Bg);
}

.pageBody .searchPanel .search-box .search-icon:hover {
    color: var(---searchT1Bg);
    background-color: var(---searchT1Text);
    border: 1px solid var(---searchT1Bg);
}

.header__search {
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 50px;
    background-color: var(---searchT2Text);
    height: 55px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

@media screen and (max-width: 768px) {
    .header__search {
        width: 80%;
        position: relative;
    }
}

@media screen and (max-width: 468px) {
    .header__search {
        font-size: 16px;
        width: 90%;
    }
}

.search__icon {
    padding: 10px 10px 10px 25px;
    color: gray;
}

.search__input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    padding: 0px 10px;
    border: none;
    outline: none;
    border-radius: 50px;
    font-size: 18px;
}

.search__input:focus {
    font-weight: 500;
}

.search__button {
    padding: 10px 25px;
    font-size: 18px;
    border: none;
    background-color: var(---searchT2Bg);
    outline: none;
    color: var(---searchT2Text);
    border-radius: 50px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    position: absolute;
    right: 5px;
}

.search__button:hover {
    -webkit-box-shadow: 1px 1px 10px #7878ff;
    box-shadow: 1px 1px 10px #7878ff;
}

.search__button:active {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}