.button-submit {
    background: none;
    background-color: #cf2e26;
    border: none;
    border-radius: 5px 10px;
    color: #fff;
    cursor: pointer;
    font-weight: 300;
    letter-spacing: .5px;
    margin-bottom: 5px;
    padding: 10px 20px
}

.button-submit:disabled {
    background-color: rgba(0, 0, 0, .2);
    color: #888
}

.button-submit:not(:disabled):hover {
    background-image: linear-gradient(45deg, transparent, rgba(0, 0, 0, .2))
}

.checkbox {
    align-items: center;
    display: flex
}

.checkbox input[type=checkbox] {
    display: none
}

.checkbox input[type=checkbox]:checked + span:before {
    border: 4px solid #cf2e00;
    border-left: none;
    border-top: none;
    content: "";
    display: inline-block;
    height: 29px;
    transform: rotate(45deg);
    width: 10px
}

.checkbox > span {
    align-items: flex-end;
    border: 2px solid #cf2e26;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 25px;
    height: 25px;
    justify-content: center;
    max-width: 25px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

html:not(:lang(ar)) .checkbox > span {
    margin-right: 10px
}

html:lang(ar) .checkbox > span {
    margin-left: 10px
}

.entry {
    background-color: var(--bk);
    border: 2px solid #cf2e26;
    border-radius: 5px;
    display: block;
    margin-bottom: 5px;
    margin-top: 25px;
    padding: 15px 20px;
    position: relative;
    z-index: 1
}

.entry.flex {
    align-items: center;
    display: flex
}

.entry:before {
    color: #aaa;
    content: attr(placeholder);
    left: 20px;
    overflow: hidden;
    position: absolute;
    right: 20px;
    text-overflow: ellipsis;
    top: 50%;
    transform: translateY(-50%);
    transition: .2s;
    white-space: nowrap;
    z-index: -1
}

.entry.not-empty:before, .entry:focus-within:before {
    background-color: var(--bk);
    color: currentColor;
    font-size: 14px;
    left: 10px;
    padding: 0 10px;
    right: auto;
    top: 0;
    transform: translateY(-50%)
}

.entry .entry-text {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 300;
    padding: 0;
    width: 100%
}

.entry .entry-text + i {
    cursor: pointer
}

.entry .entry-text + i:hover {
    color: #cf2e26
}

.entry .entry-textarea {
    min-height: 150px;
    resize: none
}

.entry + p {
    font-size: 12px;
    margin: 0 0 10px
}

html:lang(ar) .entry.not-empty:before, html:lang(ar) .entry:focus-within:before {
    left: auto;
    right: 10px
}

.error-message .error-message-box {
    align-items: center;
    border-radius: 100px;
    display: inline-flex;
    overflow: hidden;
    position: absolute;
    right: -10px;
    top: -10px
}

.error-message .error-message-box:not(.active) {
    -webkit-animation: up-down 1s infinite alternate;
    animation: up-down 1s infinite alternate;
    background-color: #cf2e26;
    color: #fff
}

.error-message .error-message-box > i {
    align-items: center;
    border-radius: 100px;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    height: 25px;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 25px
}

.error-message .error-message-box.active {
    background-color: #fff;
    border: 1px solid #cf2e26;
    max-width: 300px;
    padding-right: 5px;
    width: 100%
}

.error-message .error-message-box.active > i:before {
    content: "\f00d"
}

.error-message .error-message-box .error-message-box-content {
    flex: auto
}
