/* resets */
*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
}
p {
    font-family: 'Muli', sans-serif;
}

h1 {
    font-family: 'Muli', sans-serif;
    text-transform: uppercase;
}

.container {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

body, .button, .tick {
    justify-content: center;
    align-items: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

body {
    width: 100%;
    height: 90vh;
}

.button {
    width: 200px;
    height: 60px;
    font-size: x-small;
    text-align: justify-all;
    background: #041e3a;
    border-radius: 6px;
    transition: all .3s cubic-bezier(0.67, 0.17, 0.40, 0.83);
}

.button svg {
    transform: rotate(180deg);
    transition: all .5s;
}

.button__circle {
    width: 120px;
    height: 120px;
    background: mediumseagreen;
    border-radius: 50%;
    transform: rotate(-180deg);
}

.button:hover {
    cursor: pointer;
}

.tick {
    color: white;
    font-size: 2em;
    transition: all .9s;
}

/* ==== 1. animated seachbox ===== */
#animated input[type=text] {
    width: 300px;
    box-sizing: border-box;
    border: 1px solid #c8c8c8;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    padding: 12px 20px 12px 40px;
    -webkit-transition: width 0.5s ease-out;
    transition: width 0.5s ease-out;
}

#animated input[type=text]:focus {
    width: 500px;
}

#animated i {
    position: relative;
    left: 30px;
}

/* ===== 2. standard seachbox ==== */

.search-txt-input{
    padding: 12px 20px;
    font-size:14px;
    border:1px solid #c8c8c8;
    border-right:0px;
    border-top-left-radius: 4px 4px;
    border-bottom-left-radius: 4px 4px;
    width: 200px;
}
.search-button {
    padding: 12px 15px;
    font-size: 16px;
    outline: none;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    border: solid 1px #c8c8c8;
    border-right: 0px;
    background: #f45c03;
    border-top-right-radius: 4px 4px;
    border-bottom-right-radius: 4px 4px;
    position: relative;
    left:-5px;
}
.search-button:hover {
    text-decoration: none;
    background: #f67c35;
}

/* Fixes submit button height problem in Firefox */
.search-button::-moz-focus-inner {
    border: 0;
}

/* === 3. standard animated seachbox === */

#animated-2 .search-txt-input{
    width: 200px;
    -webkit-transition: width 0.5s ease-out;
    transition: width 0.5s ease-out;
}

#animated-2 input[type=text]:focus {
    width: 500px;
}

/* == 4. standard seachbox with icon === */

button[type='submit'] {
    background-color:#E51284;
    color:#fff;
    cursor:pointer;
}
button[type='submit']:hover {
    background-color:#ea419c;
    color:#fff;
    cursor:pointer;
}

/* === 5. standard seachbox with icon animated === */

#standard-3 .search-txt-input{
    width: 200px;
    -webkit-transition: width 0.5s ease-out;
    transition: width 0.5s ease-out;
}

#standard-3 input[type=text]:focus {
    width: 500px;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}

.newquantity {
    color: green;
    font-weight: bolder;
}

.headfikos {
    background-color: black;
    width: 100%;
    padding: 20px;
    margin-bottom: 100px;
}