.blocked {
    background-color: #656565c7;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    border-radius: 0.25rem;
    color: white;
    text-align: center;
    font-size: 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.blocked-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
}

.title-input,
.title-input:focus {
    border: none;
    background-image: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
    width: 100%;
}

.click-cursor:hover {
    cursor: pointer;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #008cba;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.image-editor:hover .overlay {
    height: 100%;
}

.image-editor:hover .middle {
    height: 100%;
}

.image-editor:hover img {
    opacity: 0.3;
}

.image-editor:hover .middle {
    opacity: 1;
}

.text {
    color: rgb(34, 33, 33);
    font-size: 0.9em;
    position: absolute;
    width: max-content;
    font-weight: 800;
    top: 50%;
    left: 50%;
    cursor: pointer;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.middle {
    transition: 0.5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.invalid-feedback {
    display: block;
}

.legal-card .card-header {
    padding: 14px;
    border-bottom: 0px;
}

.legal-card .card-body {
    padding: 14px;
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.pitch-image-card {
    height: 350px;
    object-fit: contain;
    width: 100%;
}

.pitch-eq-height-card {
    min-height: 350px;
}