/*
* Search Style
*/
.wpop-search-box input:focus {
    outline: none;
}
.wpop-search-box .btn-search{
  background: transparent;
  padding: 0;
}
.wpop-search-box svg {
  width: 20px;
  margin-top: 8px;
}

/* Search Style 01 */
.wpop-search-style-1 {
    position: relative;
}

.wpop-search-style-1 input {
    border: 1px solid #ccc;
    width: 100%;
    border-radius: 22px !important;
    transition: all .3s ease-in-out;
    height: 45px;
    color: #999999;
    font-size: 14px;
    padding: 0 78px 0 20px !important;
}

.wpop-search-style-1 input:focus {
    width: 100%;
    border: 1px solid hotpink;
}

.wpop-search-style-1 input:focus~button {
    width: 36px;
}

.wpop-search-style-1 input:focus~button.btn-search {
    background: hotpink;
    color: #fff;
    border-radius: 20px;
}

.wpop-search-style-1 input:focus~button.btn-reset {
    right: -22px;
}

.wpop-search-style-1 button {
    transition: all .3s ease-in-out;
    border: none;
    height: 36px;
    position: absolute;
    right: 4px;
    top: 50%;
    width: 70px;
    transform: translateY(-50%);
    padding: 0;
}

.wpop-search-style-1 button.btn-search {
    background: #0056ff;
    border-radius: 0 20px 20px 0;
    color: #fff;
    transition: all .3s ease-in-out;
}

/* Search Style 02 */
.wpop-search-style-2 {
    display: inline-block;
    position: relative;
    height: 60px;
    float: right;
    padding: 0;
    position: relative;
    width: 100%;
}

.wpop-search-style-2 input[type="text"] {
    height: 60px;
    font-size: 17px;
    display: inline-block;
    font-weight: 100;
    border: none;
    outline: none;
    color: #fff;
    padding: 0;
    padding-right: 70px;
    width: 0px;
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    z-index: 3;
    transition: width 0.5s cubic-bezier(0, 0.795, 0, 1);
    cursor: pointer;
}

.wpop-search-style-2 input[type="text"]:focus {
    width: 100%;
    z-index: 1;
    border-bottom: 1px solid #333;
    cursor: text;
}

.wpop-search-style-2 button.btn-search {
    width: 63px;
    display: inline-block;
    color: #333;
    float: right;
    background: transparent;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
    cursor: pointer;
    transition: width 0.4s cubic-bezier(0, 0.795, 0, 1);
}

/* Search Style 03 */
.wpop-search-style-3 {
    float: right;
    height: 40px;
    position: relative;
    width: 100%;
}

.wpop-search-style-3 input[type="text"] {
    border: 1px solid #18012c;
    font-size: 12px;
    height: 40px;
    position: absolute;
    transition: all .3s ease-in;
    width: 50%;
    right: 0px;
    color: #18012c;
    font-size: 14px;
    transition: all .3s ease-in-out;
    padding: 0 20px;
    padding-right: 63px;
}

.wpop-search-style-3 input[type="text"]:focus {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #ed552d;
}

.wpop-search-style-3 input[type="text"]:focus~button {
    background: #ed552d;
    border: 1px solid #ed552d;
    border-radius: 0 20px 20px 0;
    color: #fff !important;
}

.wpop-search-style-3 button {
    background: transparent;
    transition: all .3s ease-in;
    position: absolute;
    right: 0;
    border: 0 none;
    transition: all .3s ease-in-out;
    width: 42px;
    text-align: center;
    height: 100%;
    border: 0 none;
}

/*.wpop-search-style-3 button.btn-reset {
    background: transparent;
    border: 1px solid #18012c;
    border-radius: 50%;
    font-size: 10px;
    height: 20px;
    line-height: 10px;
    padding: 0;
    width: 20px;
    left: 92%;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all .6s ease-in-out;
}

.wpop-search-style-3 input[type="text"]:focus~button.btn-reset {
    transform: rotateZ(360deg) translateY(-50%);
    left: 100%;
    transition-delay: .3s;
    border-radius: 100%;
    opacity: 1;
    background: transparent;
    border: 1px solid #18012c;
    color: #18012c;
    visibility: visible;
}*/

/* Search Style 04 */
.wpop-search-style-4 {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    float: right;
}
.wpop-search-style-4 form{
  width: 45px;
  transition: all 0.5s ease;
}

.wpop-search-style-4:before {
    content: '';
    display: block;
    width: 3px;
    height: 100%;
    position: relative;
    background-color: #ff4888;
    transition: all .5s ease;
}

.wpop-search-style-4 form.open {
    width: 100%;
}

.wpop-search-style-4 form.open:before {
    height: 20px;
    margin: 15px 8px 10px 29px;
    position: absolute;
}

.wpop-search-style-4 .search-box {
    width: 100%;
    height: 100%;
    box-shadow: none;
    border: none;
    background: transparent;
    color: #ff4888;
    padding: 0px 48px 0px 45px;
    font-size: 14px;
}

.wpop-search-style-4 .search-box:focus {
    outline: none;
}

.wpop-search-style-4 .search-button {
    width: 45px;
    height: 45px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

.wpop-search-style-4 .search-icon {
    width: 20px;
    height: 20px;
    border-radius: 40px;
    border: 2px solid #ff4888;
    display: block;
    position: relative;
    margin-left: 10px;
    transition: all 0.5s ease;
    top: 10px;
}

.wpop-search-style-4 .search-icon:before {
    content: '';
    width: 3px;
    height: 8px;
    position: absolute;
    right: -2px;
    top: 12px;
    display: block;
    background-color: #ff4888;
    transform: rotate(-45deg);
    transition: all 0.5s ease;
}

.wpop-search-style-4 .search-icon:after {
    content: '';
    width: 3px;
    height: 9px;
    position: absolute;
    right: -8px;
    top: 17px;
    display: block;
    background-color: #ff4888;
    transform: rotate(-46deg);
    transition: all 0.5s ease;
}

.wpop-search-style-4 form.open .search-icon {
    margin: 0;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    top: 5px;
}

.wpop-search-style-4 form.open .search-icon:before {
    transform: rotate(52deg);
    right: 12px;
    top: 12px;
    height: 18px;
}

.wpop-search-style-4 form.open .search-icon:after {
    transform: rotate(-230deg);
    right: 12px;
    top: 2px;
    height: 18px;
}

/* Search Style 05 */
.wpop-search-style-5 button {
    color: #f45862;
    font-size: 24px;
    border: 0 none;
    outline: none;
    background: transparent;
    border: none !important;
}

.block-bg {
    background: rgba(22, 22, 27, 0.97) none repeat scroll 0 0;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    text-align: center;
    top: 0;
    transform: scale(0.7);
    transition: -webkit-transform 0.8s ease 0s, -moz-transform 0.8s ease 0s, -o-transform 0.8s ease 0s, transform 0.8s ease 0s, opacity 0.5s ease 0s, visibility 0.5s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 999;
}

.block-bg.is-visible {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.block-bg .close__wrap {
    color: white;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    line-height: 25px;
    margin-top: -12.5px;
    padding-right: 25px;
    position: absolute;
    right: 49px;
    text-transform: uppercase;
    z-index: 11;
    transition: 0.4s;
    top: 65px;
}

.block-bg .close__wrap:hover {
    color: #ffffff;
}

.block-bg .close__wrap::after {
    content: "\f00d";
    font-family: 'FontAwesome';
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.minisearch .field__search {
    left: 0;
    margin: 0 auto auto;
    max-width: 1000px;
    padding: 0 5px;
    position: fixed;
    right: 0;
    top: 50%;
}

.minisearch .field__search input {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: transparent none repeat scroll 0 0;
    border-color: currentcolor currentcolor #ebebeb;
    -o-border-image: none;
    border-image: none;
    border-style: none none solid;
    border-width: 0 0 1px;
    color: #fff;
    height: 60px;
    padding: 10px 60px 10px 10px;
    position: static;
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
    z-index: 1;
    font-size: 16px;
    outline: none;
}

.minisearch .field__search .action {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.minisearch .field__search .action button{
    color: #797979;
    display: inline-block;
    font-size: 26px;
    height: 60px;
    left: 0;
    line-height: 60px;
    text-align: center;
    top: 0;
    width: 60px;
}
