*,body {
    padding: 0;
    margin: 0;
    font-family: Poppins, sans-serif;
}

a {
    text-decoration: none;
    display: inline-block;
   }

ul,li {
    list-style: none;;
   }  

img {
  max-width: 100%;
}

h1,h2,h3,h4 {
    font-family: Poppins, sans-serif;
    font-weight: 700;
    color: #000;
    padding: 0;
    margin: 0;
}

p,span,li,a {
    font-family: Poppins, sans-serif;
    font-weight: 400;
     padding: 0;
    margin: 0;
}


ul {
    display: none;
}
/*====default_css_end==========*/


/*==============recent_file_css_start==========*/

.magnify_area form {
    position: relative;
}

.magnify_area .input {
    padding: 10px;
    width: 80px;
    height: 45px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 15px;
    color: #000000;
    outline: none;
    transition: .5s;
    position: absolute;
    right: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.magnify_area form:hover input{
    width: 350px;
    visibility: visible;
    opacity: 1;
}

.recent_file_sec {
    padding: 60px 20px;
}

.recent_file_area {
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 25px 0 10px;
    background: #fff;
}

.rect_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.recent_heading {
    display: flex;
    align-items: start;
    gap: 15px;
}

.recent_heading img {
    width: 25px;
    flex: none;
    height: 25px;
    position: relative;
    top: 7px;
}

.recent_heading h2 {
    font-size: 27px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    color: #000;
}

.mic_search_icon i {
    font-size: 23px;
    color: #565656;
}

.trans_btn {
    display: inline-block;
    background: #3578f5;
    padding: 12px 20px;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
}

.recent_right_part {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

.mic_search_icon {
    display: flex;
    align-items: center;
    gap: 30px;
}

.rect_table {
    margin-top: 10px;
}

.rect_table table {
    width: 100%;
}

.rect_table input[type="checkbox"] {
    width: 20px;
    height: 20px;
    position: relative;
    top: 3px;
}

.whale_img {
    width: 30px;
}

.rect_table span {
    color: #888;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    display: block;
    cursor: pointer;
}

.rect_table td {
    padding: 10px 20px;
}

.rect_table tr:first-child {
    border-bottom: 1px solid #ededed;
}

.bottom_heading h3 {
    font-size: 16px;
    color: #000;
    line-height: 1.3;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.bottom_heading h3 i {
    margin-right: 4px;
}

.bottom_heading p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.4;
}

.bottom_btn_part {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: end;
}


.recent_bottom {
    display: none;
    justify-content: space-between;
    align-items: start;
    padding: 21px;
    /* border-top: 1px solid #cccccc; */
    border-bottom: 1px solid #cccccc;
    margin-top: 0; 
}

.bottom_btn_part .botm_btm {
    display: inline-block;
    background: #dedede;
    font-size: 14px;
    line-height: 1.3;
    color: #000;
    padding: 8px 20px;
    letter-spacing: 0.5px;
    border-radius: 5px;
    cursor: pointer;
}

.logout_btn {
    display: inline-block;
    background: #ff4d4d;
    padding: 12px 20px;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.logout_btn:hover {
    background: #cc0000;
}

.three_dot {
    position: relative;
}

.three_dot ul {
    position: absolute;
    top: 150%;
    right: 0;
    padding: 20px;
    z-index: 3;
    opacity: 0;
    background: #fff;
    visibility: hidden; 
    transform: scaleY(0);
    transition: all 400ms ease;
    display: block;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.three_dot:hover ul {
    opacity: 1;
    background: #fff;
    visibility: visible; 
    transform: scaleY(1);
}

.three_dot ul li {
    margin-bottom: 10px;
}

.three_dot ul li a {
    color: #000;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    display: flex;
    align-items: start;
    gap: 6px;
    white-space: nowrap;
}

.bottom_btn_part .botm_btm i {
    margin-right: 5px;
}


.date-picker-popup {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 16px;
    z-index: 1000;
    min-width: 300px;
}

.date-picker-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.date-inputs {
    display: flex;
    gap: 16px;
}

.date-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.date-input-group label {
    font-size: 14px;
    color: #666;
}

.date-input-group input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.date-picker-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.date-picker-actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.apply-date {
    background-color: #4a90e2;
    color: white;
}

.apply-date:hover {
    background-color: #357abd;
}

.clear-date {
    background-color: #f5f5f5;
    color: #666;
}

.clear-date:hover {
    background-color: #e8e8e8;
}

.fa-calendar-days {
    cursor: pointer;
}

/*==============recent_file_css_end==========*/



/*-==============log in page start================--*/

.login_sec .form_group {
    margin-bottom: 25px;
}

.login_sec .form_area .form_group label {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
    color: #011936;
    line-height: 1.6;
    display: block;
    margin-bottom: 10px;
}

.login_sec .form_group input, 
.login_sec .form_group select, 
.login_sec .form_group textarea {
    height: 50px;
    border: none;
    border-radius: 5px;
    color: #000;
    font-size: 15px;
    padding: 10px 15px;
    width: 100%;
    box-shadow: rgb(53 120 245 / 70%) 0px 1px 3px 0px, rgb(53 120 245 / 15%) 0px 0px 0px 1px;
    background-color: #fff;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.login_sec {
    padding: 60px 20px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_sec .form_area {
    border-radius: 15px;
    border: 1px solid #3578f5;
    max-width: 500px;
    padding: 60px 40px 45px;
    box-sizing: border-box;
    background: #fafcff;
    box-shadow: rgb(53 120 245  / 16%) 0px 1px 4px;
    width: 100%;
    margin: 0 auto;
}

.login_sec .login_submit input[type="submit"] {
    width: 145px;
    box-shadow: none;
    background: #3578f5;
    color: #ffff;
    font-weight: 600;
    cursor: pointer;
    font-size: 17px;
    letter-spacing: 0.5px;
}

.login_sec .login_submit input[type="submit"]:hover {
    background: #011936;
}

.login_sec .form_group.login_submit {
    text-align: center;
    margin-top: 45px;
    margin-bottom: 40px;
}

.login_sec .remember_area input[type="checkbox"] {
    box-shadow: none;
    background-color: inherit;
    padding: 0;
    border-radius: 0;
    width: 16px;
}

.login_sec .forgot_password {
    text-align: center;
}

.login_sec .forgot_password p {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
    color: #011936;
    line-height: 1.6;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.login_sec .forgot_password a {
    color: #3578f5;
    display: inline-block;
    text-decoration: underline;
    font-weight: 700;
}

.login_sec .remember_area {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
}

.login_sec .remember_area label {
    margin-bottom: 0 !important;
    font-size: 15px !important;
    color: #3578f5!important;
}

.login_sec .form_group input:focus, 
.login_sec .form_group select:focus, 
.login_sec .form_group textarea:focus,
.login_sec .form_group input:focus-visible, 
.login_sec .form_group select:focus-visible, 
.login_sec .form_group textarea:focus-visible {
    outline: none !important;
    box-shadow: rgb(53 120 245 / 85%) 0px 1px 3px 0px, rgb(53 120 245  / 25%) 0px 1px 2px 0px;
}

/*-==============log in page end================--*/

/*-==============popup start================--*/



.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.transcribe_popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 576px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 40px;
    border-radius: 3px;
    z-index: 1000;
}

.popup-close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    font-size: 20px;
}

.transcribe__head {
    margin-bottom: 20px;
}

.transcribe__head h2 {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-align: center;
}

.transcribe_popup .form_group label {
    font-size: 15px;
    color: #000;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 5px;
}

.drag-file-area {
    padding: 40px;
    border: 5px solid #3578f5;
    border-radius: 15px;
    background: #ededed;
    text-align: center;
    overflow: hidden;
}


.drag_top {
    font-size: 21px;
    display: block;
    text-align: center;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 12px;
}

.dynamic-message {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    text-align: center;
    max-width: 280px;
    margin: 0 auto 15px;
}

.or_c {
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin: 0 auto 15px;
}

.browse-files input {
    font-size: 15px;
    color: #000;
    font-weight: 400;
    line-height: 1.3;
    position: relative;
    left: 50px;
}

.transcribe_popup .form_group {
    margin-bottom: 15px;
}

.language_select select {
    display: block;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    color: #000;
    font-size: 15px;
    font-weight: 400;
}

.check-confirm .animal_img img {
    width: 35px;
}

.check-confirm .animal_img {
    margin-bottom: 3px;
}

.check-confirm h2 {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 3px;
    font-weight: 700;
    color: #000;
}

.img_content p {
    color: #888;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.img_content p i {
    margin-right: 3px;
}

.speaker {
    font-size: 16px;
    text-align: center;
    font-weight: 400;
    color: #888;
    line-height: 1.6;
}

.transcribe_popup .trans_btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}
  
/*-==============popup end================--*/



/*-==============responsive start================--*/

@media all and (max-width: 991px) {


    .browse-files input {
        left: 0;
    }
}


@media all and (max-width: 767px) {

    .recent_file_area {
        width: 696px;
    }

    .recent_file_sec > .container {
        overflow-x: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .or_c {
        margin: 0;
        width: fit-content;
        margin-bottom: 15px;
    }

    .drag-file-area {
        padding: 20px;
    }

    .magnify_area form:hover input {
        width: 280px;
    }
}


/*-==============responsive end================--*/