.types-container{
    height: 50%;
}
.add-report-background{
 top: 0;
 bottom: 0;
 display: flex;
 position: fixed;
 width: 100vw;
 height: 100vh;
 background-color: rgba(0, 0, 0, 0.5);
 z-index: -1;
 flex-direction: column;
 justify-content: space-around;
 transition: 0s;
 opacity: 0;
}

.add-report-main{
 position: relative;
 width: 36%;
 background-color: #ffffff;
 height: 600px;
 margin: auto;
 vertical-align: center;
 border-radius: 7px;
 padding: 10px;
 padding-left: 2% ;
 padding-right: 2%;
 font-family: "Tajawal", sans-serif;
}

.show-add-card{
 animation: FadeIn 100ms linear forwards;
}

.hide-add-card{
 animation: FadeOut 100ms linear forwards !important;
}



@-webkit-keyframes show {
 0%{display: none;}
 100%{display: flex;}
}

@keyframes show {
 0%{display: none;}
 100%{display: flex;}
}


@-webkit-keyframes FadeIn {
 0%{
     opacity: 0;
 }
 50%{
     opacity: 0.5;
 }
 100%{
     opacity: 1;
 }
}

@keyframes FadeIn {
 0%{
     opacity: 0;
 }
 50%{
     opacity: 0.5;
 }
 100%{
     opacity: 1;
 }
}

@-webkit-keyframes FadeOut {
 0%{
     opacity: 1;
 }
 50%{
     opacity: 0.5;
 }
 100%{
     opacity: 0;
 }
}

@keyframes FadeOut {
 0%{
     opacity: 1;
 }
 50%{
     opacity: 0.5;
 }
 100%{
     opacity: 0;
 }
}



.add-report-background {
    top: 0;
    bottom: 0;
    display: flex;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    flex-direction: column;
    justify-content: space-around;
    transition: 0s;
    opacity: 0;
}
.add-report-main {
    position: relative;
    width: 36%;
    background-color: #fff;
    height: 600px;
    margin: auto;
    vertical-align: center;
    border-radius: 7px;
    padding: 10px;
    padding-left: 2%;
    padding-right: 2%;
    font-family: "Tajawal", sans-serif;
}
.show-add-card {
    animation: FadeIn 100ms linear forwards;
}
.hide-add-card {
    animation: FadeOut 100ms linear forwards !important;
}
@-webkit-keyframes show {
    0% {
        display: none;
   }
    100% {
        display: flex;
   }
}
@keyframes show {
    0% {
        display: none;
   }
    100% {
        display: flex;
   }
}
@-webkit-keyframes FadeIn {
    0% {
        opacity: 0;
   }
    50% {
        opacity: 0.5;
   }
    100% {
        opacity: 1;
   }
}
@keyframes FadeIn {
    0% {
        opacity: 0;
   }
    50% {
        opacity: 0.5;
   }
    100% {
        opacity: 1;
   }
}
@-webkit-keyframes FadeOut {
    0% {
        opacity: 1;
   }
    50% {
        opacity: 0.5;
   }
    100% {
        opacity: 0;
   }
}
@keyframes FadeOut {
    0% {
        opacity: 1;
   }
    50% {
        opacity: 0.5;
   }
    100% {
        opacity: 0;
   }
}


.add-report-main section {
    display: flex;
    flex-flow: column wrap;
}
.add-report-main section > div {
    flex: 1;
    padding: 0.5rem;
}
.add-report-main input[type="radio"] {
    display: none;
}
.add-report-main input[type="radio"]:not(:disabled) ~ label {
    cursor: pointer;
}
.add-report-main input[type="radio"]:disabled ~ label {
    color: rgba(188, 194, 191, 1);
    border-color: rgba(188, 194, 191, 1);
    box-shadow: none;
    cursor: not-allowed;
}
.add-report-main label {
    
    display: block;
    border: 2px solid rgb(255, 255, 255);;
    border-radius: 10px;
    padding: 1px;
    margin-bottom: 1rem;
    text-align: center;
    background-color: #ffffff;
    color: #727272;
    /* -webkit-box-shadow: 0px 13px 20px 0px rgba(152, 232, 226, 0);
    -moz-box-shadow: 0px 13px 20px 0px rgba(152, 232, 226, 0);
    box-shadow: 0px 13px 20px 0px rgba(152, 232, 226, 0); */
    position: relative;
    transition: 0.3s;
}
.add-report-main label:hover {
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.add-report-main input[type="radio"]:checked + label {
    background-color: #98e8e2;
    color: rgba(255, 255, 255);
    border: 2px solid #98e8e2;
    -webkit-box-shadow: 0px 13px 20px 0px rgba(152, 232, 226, 0.4);
    -moz-box-shadow: 0px 13px 20px 0px rgba(152, 232, 226, 0.4);
    box-shadow: 0px 13px 20px 0px rgba(152, 232, 226, 0.4);
}
.add-report-main input[type="radio"]:checked + label::after {
    color: #727272;
    /* font-family: FontAwesome; */
    border: 2px solid rgb(139, 214, 209);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* content: url('../icons/check.svg'); */
    font-size: 20px;
    position: absolute;
    top: 0px;
    left: 100%;
    transform: translateX(-50%);
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}


.add-report-main p {
    font-weight: 500;
    margin: 10px;
}

.add-report-main .info-container{
    width: 100%;
    height: 10%;
    display: flex;
    flex-direction: row;
}


.add-report-main .info-container .close{
    width: 10%;
    height: 100%;
    /* background-color: brown; */
    color:#727272;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
    transition: 0.3s;
 }
 
 .add-report-main .info-container .close svg{
     padding: 5px;
     background-color: #EFF1F2;
     border-radius: 50%;
     transition: 0.2s;
 }
 
 .add-report-main .info-container .close:hover svg{
     background-color: #dfdfdf;
 }
 
 
 
 
 .add-report-main .info-container .name{
    width: 90%;
    height: 100%;
    /* background-color: rgb(42, 75, 165); */
    color:#727272;
    font-size: 15px;
    direction: rtl;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
 }

 
.add-report-main .comment-container{
    width: 100%;
    height: 25%;
}


.add-report-main .comment-container .comment-input{
    height: 100%;
}

.add-report-main .comment-container .comment-input textarea{ 
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: "Tajawal", sans-serif;
    border: 0;
    background-color: #EFF1F2;
    box-sizing: border-box;
    border-radius: 15px;
    resize: none;
    outline: none;
    direction: rtl;
    padding: 15px;
    color: #727272;
}
.add-report-main .comment-container .comment-input textarea::placeholder{
    color: #c6c6c6;
}



.button-container{
    width: 100%;
    height: 15%;
    display: flex;
    flex-direction: column;    
    justify-content: center;
}

.button-container button{
    width: 100%;
    outline: none;
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 0;
    border-radius: 5px;
    background-color: #98e8e2 !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0px 3px 20px 0px rgb(152 232 226 / 76%);
    -moz-box-shadow: 0px 3px 20px 0px rgba(152, 232, 226, 0.76);
    box-shadow: 0px 0px 0px 0px rgb(152 232 226 / 76%);
    font-family: "Tajawal", sans-serif;
    cursor: pointer;
    transition: 0.3s;
}



.button-container button:hover{
    -webkit-box-shadow: 0px 13px 20px 0px rgba(152, 232, 226, 0.76);
    -moz-box-shadow: 0px 13px 20px 0px rgba(152, 232, 226, 0.76);
    box-shadow: 0px 3px 20px 0px rgba(152, 232, 226, 0.76);
}
@media (max-width: 1400px) {
    .add-report-main{
        width: 85%;
        height: 650px;
        padding-right: 4%;
        padding-left: 4%;
        margin-top: 30px;
    }

    .add-report-main input[type="radio"]:checked + label::after {
        font-size: 15px;
        height: 25px;
        width: 25px;
        line-height: 30px;
        top: 3px;

    }

}