.close-container {
    position: relative;
    /* margin: 20px; */
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    float: right;
}

.leftright {
    height: 4px;
    width: 30px;
    position: absolute;
    /* margin-top: 24px; */
    background-color: white;
    border-radius: 2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.rightleft {
    height: 4px;
    width: 30px;
    position: absolute;
    /* margin-top: 24px; */
    background-color: white;
    border-radius: 2px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

label {
    color: white;
    font-family: Helvetica, Arial, sans-serif;
    font-size: .6em;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    opacity: 0;
}

.close {
    /* margin: 60px 0 0 5px; */
    position: absolute;
}

.close-container:hover .leftright {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #F25C66;
}

.close-container:hover .rightleft {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #F25C66;
}

.close-container:hover label {
    opacity: 1;
}


/*# sourceMappingURL=closeButton.css.map */