@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

.blockRequestsAdd {
    font-family: 'Montserrat', sans-serif;
}
 
.hr-dashed {
	margin: 20px 0;
	padding: 0;
	height: 0;
	border: none;
	border-top: 2px dashed #575656;
}

.headerBold {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;

    margin-bottom: 20px;

    filter: drop-shadow(2px 4px 20px rgb(255, 2, 2));

    text-shadow: 2px 0 2px #000, 
    0 2px 2px #000, 
    -2px 0 2px #000, 
    0 -2px 2px #000;
}

#result {
    margin-bottom: 20px;
}

.blockRequestsAbout ul {
    list-style: decimal;
    padding-left: 40px;
} 

.rulesLink {
    color: #fff;
    padding-bottom: 2px;
    border-bottom: 1px solid #fff;
}

.blockRequestsAbout ul li {
    margin-bottom: 8px; 
    padding-left: 8px;

    font-size: 14px;
}

.blockRequestsAbout ul li::marker {
    font-weight: 300;
    color: #dbd8d8;
}

.wrapperUl {
    display: block;
    background: #1e1e1e;
    padding: 8px;
    border-radius: 8px;
    
}

.miniHeader {
    margin-bottom: 14px;

    font-size: 16px;
    color: #cdc5c5;
    font-weight: 700;
    letter-spacing: 1.2px;

    padding-left: 16px;
    padding-top: 8px;
}

.always {
    font-weight: 700;
    color: red;

    padding-right: 6px;
}

.blockRequestsAbout ul li:last-child {
    margin-bottom: 0px;
}

.blockRequestsAdd label {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1.3px;
}

.blockRequestsAdd > .row {
    margin-bottom: 20px;
}

button.addRequest {
    display: block;

    width: fit-content;

    border: none;
    background-color: rgb(41 39 39);
    border: 2px solid rgb(77 75 75);

    color: #fff;

    padding: 6px 40px;

    font-family: 'Montserrat', sans-serif;

    font-weight: 400;

    border-radius: 10px;

    letter-spacing: 1px;

    font-size: 14px;
    
    cursor: pointer;
}

button.addRequest:hover {
    background-color: rgba(38, 38, 216, 0.24);
    border: 2px solid rgb(57, 57, 245);
    color: #fff;
}

.customInputFile {
    background: #36353e;
    border-color: #3a3846;
    border-radius: 8px;
    color: #b7b4bf;
    box-shadow: none;
    height: 40px;

    display: flex;

    position: relative;

}

.customInputFile input {
    position: absolute;
	z-index: 99999;
	opacity: 0;
	display: block;
	width: 100%;
	height: 40px;

    cursor: pointer;
}


.selectedFile {
    flex-basis: 70%;

    display: flex;
    align-items: center;
    padding: 0px 20px;
    overflow: hidden;

    cursor: pointer;
}


.selectFileBtn {
    cursor: pointer;

    margin-left: auto;

    flex-basis: 30%;

    color: #fff;

    border: none;

    background-color: #1a1a1d;

    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;

    font-size: 13px;
}

 
.vipName {
    color: rgb(248, 32, 32);
    font-weight: 900;
    letter-spacing: 2px; 

    text-shadow: 2px 0 2px #000, 
    0 2px 2px #000, 
    -2px 0 2px #000, 
    0 -2px 2px #000;
}


.buttonsWithOp {
    display: flex;

    gap: 16px;
}

.buttonsWithOp button {
    width: calc(100% / 3 - 16px);

    height: 30px;

    color: #fff;

    font-family: 'Montserrat', sans-serif;

    border-radius: 8px;

    cursor: pointer;
    
    font-weight: 600;
    letter-spacing: 1.2px;

    transition: all 0.2s;
}

.acceptBtn {
    border: 1px solid green;
    background-color: rgba(14, 100, 14, 0.356);
    box-shadow: 1px 1px 1px 1px green;
}

.acceptBtn:hover {
    background-color: green;
}

.rejectBtn {
    border: 1px solid orange;
    background-color: rgba(138, 93, 10, 0.425);
    box-shadow: 1px 1px 1px 1px orange;
}

.rejectBtn:hover {
    background-color: orange;
}

.deleteBtn {
    border: 1px solid rgb(235, 18, 18);
    background-color: rgba(148, 2, 2, 0.336);
    box-shadow: 1px 1px 1px 1px rgb(235, 18, 18);
}

.deleteBtn:hover {
    background-color: rgb(235, 18, 18);
}

.hr-circle {
	margin: 20px 0;
	padding: 0;
	height: 0;
	border: none;
	border-width: 0 0 5px;
	border-style: solid;
	border-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 1" width="8" height="4"><circle fill="orange" cx="1" cy="0.5" r="0.5"></circle></svg>') 0 0 100% repeat;
	background-position: 50%;
	box-sizing: border-box;
	color: orange;
}

.blockTable {
    display: flex;
    flex-direction: column;

    gap: 12px;

    justify-content: space-between;
}

.blockTable .blockTable_Column {
    display: flex;
    flex-direction: row;
}

.blockTable .blockTable_Column:last-child {
    border-bottom: none;
}

.blockTable .blockTable_Column .label {
    flex-basis: 30%;

    font-weight: 500;
}

.value.miniProfile a img {
    width: 36px;
    height: 36px;

    border-radius: 8px;
}


#add_new_comments textarea {
    width: 100%;

    background-color: #2b2929;

    border: 1px solid rgba(255, 255, 255, 0.082);

    border-radius: 8px;

    color: #cec8c8;

    min-height: 170px;

    padding: 20px;
}
 
input#send_btn {
    border: 1px solid rgb(5, 5, 240);
    background-color: rgba(7, 7, 212, 0.185);
    box-shadow: 1px 1px 1px 1px rgb(1, 1, 236);

    height: 30px;
    width: 200px;

    font-size: 13px;

    color: #fff;

    font-family: 'Montserrat', sans-serif;

    border-radius: 8px;

    cursor: pointer;
    
    font-weight: 600;
    letter-spacing: 1.2px;

    transition: all 0.2s;
}

input#send_btn:hover {
    background-color: rgb(36, 36, 236);
}
