input[type="text"]:hover, input[type="password"]:hover, input[type="button"]:hover, textarea:hover, select:hover, .js .select2-search input {
    box-shadow: 0 0 1px 2px rgba( 41, 204, 148, 0.3 );
    border: 1px solid #29cc94;
    color: #fff;
}

input[type="text"], input[type="password"], input[type="button"], input[type="submit"], button, select, textarea {
    display: inline-block;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    background-color: #060908;
    color: #fff;
    border: var(--border-1px);
    border-radius: var(--sp-7);
    padding: var(--sp-3) var(--sp-6);
	margin-top: -8px;
    transition: 0.3s ease;
}

input[type="text"]::placeholder {
    color: #1e2b2d;
}

input[type="password"]::placeholder {
    color: #1e2b2d;
}

input[type="submit"] {
    background: var(--gradient-color);
}

.full-width {
    display: block;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
}

.search input[type="search"] {
    height: 62px;
    width: 320px;
    color: #ababab;
}

.search button {
    display: inline-block;
    width: 44px;
    height: 44px;
    color: #fff;
    text-align: center;
    border-radius: var(--border-radius-3);
    margin-right: var(--sp-3);
    padding: 0px;
    border: 1px solid transparent;
    transition: 0.3s ease;
}

.search input[type="search"]::placeholder {
    transition: color 0.2s linear;
    color: #fff
}

.search input[type="search"]:hover::placeholder {
    color: var(--link-hover-clr);
}

.search input[type="search"],.search input[type="search"]:hover,.search input[type="search"]:focus {
    background-color: transparent;
    box-shadow: unset;
    border-color: transparent
}

.search input[type="search"]:focus {
    color: #fff
}

.right-tools .search input[type="search"] {
    width: 133px;
    transition: all 0.3s ease;
}