
#rass {
    float: right;
}

#rass a {
    color: #ff0856;
    text-decoration: none;
}

.popup {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.75);
}

#formoid {
    padding: 20px;
    font-size: 15px;
    line-height: normal;
}

#formoid small {
    font-size: 14px;
}

#formoid label {
    display: block;
}

#formoid input {
    width: 92%;
    height: 40px;
    border: 1px solid lightgray;
    border-radius: 4px;
    padding: 0 10px;
    outline: none;
    margin-bottom: 5px;
    margin-top: 2px;
}

#formoid input[type="submit"] {
    cursor: pointer;
    margin-top: 20px;
}

#formoid p {
    color: #fff;
    background: #FF055A;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
}

.popup-inner {
    max-width: 330px;
    width: 90%;
    padding: 00px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 1);
    background: #fff;
    text-align: left;
    border: 2px solid #FF055A;
    padding-top: 30px;
}

.popup-close {
    width: 30px;
    height: 30px;
    padding-top: 4px;
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 0px;
    transition: ease 0.25s all;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    border-radius: 1000px;
    background: rgba(0, 0, 0, 0.8);
    font-family: Arial, Sans-Serif;
    font-size: 20px;
    text-align: center;
    line-height: 100%;
    color: #fff;
}

.popup-close:hover {
    -webkit-transform: translate(50%, -50%) rotate(180deg);
    transform: translate(50%, -50%) rotate(180deg);
    background: rgba(0, 0, 0, 1);
    text-decoration: none;
}