@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    height: 100%;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #393939;
}
h1,h2{
    font-size: 30px;
    line-height: 45px;
    font-weight: 600;
    letter-spacing: 2px ;
}
a, button{
    text-decoration: none;
    transition: all .3s ease-in-out;
}
a.goBack {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.loginBox{
    display: flex;justify-content: center;
    align-items: center;
    height: 100%;
    background-color:#0052A3 ;
    flex-direction: column;
    min-height: 500px;
}
.loginBox form{
    width: 350px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}
form input, form select, form textarea{
    display: block;
    width: 100%;
    background-color: transparent;
    border: none;
    box-shadow: none;
    border: 1px solid #DADADA;
    height: 50px;
    border-radius:5px;
    text-indent: 10px;
    color: #393939;
    font-size: 13px;
    font-weight: 500;
    outline: none;
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
}
form label{
    color: #393939;
    font-weight: 500;
    font-size: 14px;
}
.loginBox h4{
    text-align: center;
}
form input:first-child{
    margin-top: 0;
}
.loginBox button{
    display: block;
    width: 100%;
    border: 1px solid #0052A3; 
    box-shadow: none;
    background-color: #0052A3;
    color: #fff;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}
::placeholder {
    color: #696969;
    font-size: 13px;
    font-weight: 500;
    opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
    color: #696969;
    font-size: 13px;
    font-weight: 500;
}

/* width */
::-webkit-scrollbar {
    width: 5px;    
}

/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: #0052A3;
border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #0052A3;
}
.container{
    max-width: 1600px;
    margin: auto;
}
/* HEADER */
 header{
    height: 110px;
    background-color: #0052A3;
 }
 header .container{

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 27px 0px;
 }
 header .nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 100px;
 }
 header .nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    column-gap: 100px;
 }
 header .nav ul li a{
    color: #fff;
    border-bottom: 1px solid transparent;
    font-size: 15px;
    font-weight: 600;
 }
 header .nav ul li.active a{
    border-color: #fff;
 }
 .logout_btn{
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    height: 50px;
    width: 135px;
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
 }
 .logout_btn:hover{
    background-color: #fff;
    color: #0052A3;
 }
/* HEADER END */
div#main_page {
    padding-top: 40px;
}
/* CAMPAIGN */
.campaigns_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.title_cta{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;    
}
.btn{
    background-color: #0061C1;
    border: 1px solid #0061C1;
    font-size: 14px;
    border-radius: 100px;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
}
.btn:hover{
    background-color: #fff;
    color: #0061C1;
}
.border-btn-blue {
    border-color: #0061C1;
    background: transparent;
    color: #0061C1;
}
.border-btn-blue:hover {
    border-color: #0061C1;
    background: #0061C1;
    color: #fff;
}
.search_bar{
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
form.search{
    max-width: 480px;
    width: 100%;
}
form.search input{
    text-indent: 30px;
    padding-right: 30px;
    margin-top: 0;
}
form.search .searchWrap{
    position: relative;
}
form.search .searchWrap svg{
    position: absolute;
}
#searchsvg{
    top: 18px;
    left: 11px;
}
#entersvg{
    top: 18px;
    right: 11px;
}
/* CAMPAIGN END */

/* MODAL */
.custom_modal {
    background: rgba(0, 33, 65, .9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 12px 0px #0000001A;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}
.show_create_campaign_modal .custom_modal.create_campaign,
.show_create_contact_list .custom_modal.create_contact_list,
.show_add_contact_modal .custom_modal.add_contact_modal,
.show_csv_upload_modal .custom_modal.csv_upload_modal,
.show_messages_modal .custom_modal.messages_modal,
.show_sub_campaign_modal .custom_modal.sub_campaign_modal{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.custom_modal .modal_wraper {
    height: 90%;
    overflow: auto;
    max-width: 970px;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.modal_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}
.modal_footer {
    padding-top: 20px;
}
button.close_modal {
    border: none;
    background: transparent;
    outline: none;
    cursor: pointer;
}
.modal_body {   
    overflow: auto;
    padding: 10px 0;
    height: 100%;
    padding-right: 15px;
}
.custom_modal form input ,.custom_modal form textarea,.custom_modal form select{    
    border: 1px solid #B4D1EE;
    margin-top: 10px;
}
.input_wrap_row {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    margin-top: 20px;
}
.input_wrap.contact_list {
    width: 70%;
}
.input_wrap.phone_number {
    width: 30%;
}
.input_wrap.send_times {
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: self-end;
}
.input_wrap.max_per_hour, .input_wrap.start_date {
    width: 25%;
}
.input_wrap.send_times > label {
    flex: 1;
    max-width: 44%;
}
.input_wrap.send_times > span{
    transform: translateY(-13px);
}
.input_wrap.message_a, .input_wrap.message_b {
    width: 50%;
}
.input_wrap.message_a textarea, .input_wrap.message_b textarea{
    height: 135px;
    resize: vertical;
    padding: 10px;
    text-indent: 0;
}
.input_wrap_row.preset_responses_column {
    flex-direction: column;
    margin-bottom: 20px;
}
.input_wrap_row.preset_responses_column textarea{
    height: 85px;
    resize: vertical;
    padding: 10px;
    text-indent: 0;
}
.input_wrap.preset_responses_item {
    margin-bottom: 20px;
}
.input_wrap.preset_responses_item:last-child {
    margin-bottom: 0;
}
.input_wrap.notification_emails {
    margin-bottom: 50px;
}
.custom_modal.auto_height .modal_wraper{
    height: auto;
    max-width: 800px;
}
.input_wrap_row.contact_list .input_wrap:not(.contact_list_btn) {
    flex: 1;
}
.input_wrap_row.contact_list {
    align-items: flex-end;
}
.input_wrap_row.contact_list .btn{
    height: 50px;
    cursor: pointer;
}
.auto_height .modal_body {
    padding-right: 0;
}
.auto_height {
    align-items: flex-start;
    padding-top: 10%;
}
.input_wrap.full_width{
    width: 100%;
}
.input_wrap.btn_area{
    text-align: center;
    margin-top: 20px;
}
.input_wrap button{
    cursor: pointer;
}
.csv_upload_modal p{
    color: #393939;
    font-size: 13px;
    font-style: italic;
    line-height: 18px;
    margin-top: 20px;
}
.csv_upload .input_wrap{
    width: 100%;
}
.csv_upload input{
    opacity: 0;
    position: absolute;
    left: -100000%;
}
.custom_csv_wrap {
    display: flex;
    column-gap: 20px;
    margin-top: 20px;
}
.custom_csv_wrap #csv_file_name {
    width: 70%;
    border: 1px solid #B4D1EE;
    height: 50px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    padding: 10px;
    color: #393939;
}
#csv_select_button {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #0061C1;
    border-radius: 100px;
    width: 150px;
    color: #0061C1;
    cursor: pointer;
}
.auto_height .modal_head{
    padding-bottom: 0;
}
.csv_success_modal_div {
    text-align: center;
}
.csv_success_modal_div h4 {
    color: #D74238;
    font-weight: 400;
    font-size: 24px;
    margin: 8px 0 30px 0;
}
.csv_success_modal_div .close_modal {
    background: #0061C1;
    color: #fff;
    display: inline-block;
    padding: 10px 15px;
    text-transform: uppercase;
    border-radius: 100px;
    height: 45px;
    width: 164px;
}












/* MODAL END */
.alert {
    width: 100%;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    background: #13df13;
    color: #000 !important;
}
.alert.error {  
    background: red;
    color: #fff !important;
}
/* page_contents start */

.page_contents{
    margin-top: 50px;
}
.tab_headers ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    column-gap: 30px;
    border-bottom:1px solid #DADADA
}
.tab_headers ul a{
    color: #707070;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    display: block;
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
}
li.active a {
    position: relative;
    color: #0052A3;
}
li a:after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #0052A3;
    background-color: transparent;
    bottom: 0;
    left: -100%;
    transition: all .3s ease-in-out;
}
li.active a:after{    
    background-color: #0052A3;
    bottom: 0;
    left: 0;
    transition: all .3s ease-in-out;
}
.tab_contents {
    padding-top: 20px;
}
.tab_contents .tab_content{
    display: none;
}
.tab_contents .tab_content.active{
    display: block;
}

table {
    border-collapse: collapse;
    width: 100%;
}
table thead{
    background-color: #F5F5F5
}
table th{
    color: #707070;
    font-size: 12px;
    letter-spacing:1px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px;
}
table td{
    color: #393939;
    font-size: 12px;    
    font-weight: 500;    
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #DADADA;
}
table td a{
    color: #000
}
table select{
    margin-top: 0;
}
table th:first-child, table td:first-child {
    text-align: left;
    padding-left: 25px;
}
.sub_campaign td span{
    transform: translateX(50px);
    display: block;
}
/* page_contents end */

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    margin-top: 30px;
}
.pagination a {
    display: flex;
    width: 30px;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 30px;
    border-radius: 5px;
}
.pagination a.active {
    background: #0061C1;
    color: #fff;
    font-size: 14px;
   pointer-events: none;
}
.pagination a:hover{
    background-color: #DADADA;
}
/* Pagination end*/
.contact_list_action_form{
    max-width: 200px;
    margin: auto;
}
/* CAMPAIGN DETAILS */
.edit_campaign_btn {
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
}
.campaign_meta_item {
    background: #E5F2FF;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    
}
.campaign_meta_item P {
    font-weight: 500;
    color: #393939;
    font-size: 16px;
}
.campaign_meta_item span {
    display: block;
    font-size: 36px;
    font-weight: 700;
}
.campaign_meta {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    column-gap: 20px;
}
.show_messages {
    border: 1px solid #B4D1EE;
    display: block;
    width: 135px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #707070;
    cursor: pointer;
    margin: auto;
    background:transparent;
}
.show_messages:hover{
    background:#B4D1EE;
        color: #000;
}
.modal_head h2 p {
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 400;
    line-height: 24px;
}
 ul.messages {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    margin-top: 30px;
}
div.msg_content{
    background:#E5F2FF;
    border:1px solid #B4D1EE;
    padding: 15px;
    border-radius:5px;
    line-height:25px;
    color:#393939
}
.msg_meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 10px;
    font-size: 14px;
    line-height: 14px;
}
.user_replies .msg_content{
    background-color: #EFFFE5;
    border-color:#B4EEBA
}
ul.messages li{
    margin-bottom:20px
}
form#send_msg_reply_form label {
    display: block;
    position:relative;
    margin-bottom:20px;
}
form#send_msg_reply_form label span {
    display: block;
    border: 1px solid #B4D1EE;
    padding: 19px;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 500;
    cursor:pointer;
}
form#send_msg_reply_form input:checked ~ span {
    background: #E5F2FF;
    border: 5px solid #0052A3;
}
form#send_msg_reply_form label input[type=radio] {
    position: absolute;
    visibility: hidden;
    opacity: 0;
}
form#send_msg_reply_form {
    border-top: 1px solid #DADADA;
    margin-top: 50px;
    padding-top: 30px;
}
p.small_h{
    margin-bottom:30px;
}
button.btn.send_msg_form_btn {
    width: 240px;
    margin: auto;
    display: block;
    cursor:pointer;
}
textarea[name=custom-message] {
    height: 85px;
    resize: vertical;
    padding: 15px;
}
button:disabled {
    opacity: .5;
    pointer-events: none;
}

span.variable {
    display: inline-block !important;
    padding: 2px 4px !important;
    margin: 0 5px;
   
    background: #0061c1;
    font-size: 12px !important;
    color: #fff;
}
.input_wrap textarea ~ p {
    margin-top: 9px;
}
textarea{
    text-indent: 0 !important;
}

.input_wrap.contact_types label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}
.input_wrap.contact_types label span {
    display: block;
    width: 30px;
    height: 30px;
    background: red;
    
}
.input_wrap.contact_types input[type=radio] {
    /* opacity: 0; */
    position: absolute;
    left: -100000%;
    visibility: hidden;
    opacity: 0;
}
.input_wrap.contact_types label span {
    display: block;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 1px solid #B4D1EE;
    border-radius: 5px;
    margin-right: 10px;
}
.input_wrap.contact_types label input:checked ~ span {
   
}
.input_wrap.contact_types label input:checked ~ span:after{
    content: "\f00c";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
        -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    position: relative;
    font-size: 26px;
    color: #0052A3;
    left: 2px;
}
.date_range_selectors_holder{
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.input_wrap_row.date_range_selectors {
    margin: 0;
    align-items: center;
}
.input_wrap_row.date_range_selectors * {
    margin-top: 0;
}
.all_items_wrap{
    align-items:center;
}
.input_wrap_row.date_range_selectors .input_wrap {
    width: 50%;
}
.input_wrap_row.date_range_selectors .input_wrap input{
   text-indent:0;
}
#mobile_menu{
    display:none;
    background: transparent;
    border: none;
    box-shadow: none;
    font-size: 20px;
    color: #fff;
    margin-right: 10px;
    cursor: pointer;
    outline:none;
}
.show_menu #mobile_menu i:before {
    content: "\f00d";
}

/*Responsive*/
@media(max-width:640px){
    #mobile_menu{
        display:block;
    }
    .container {
        padding: 0 15px;
    }
    header {
        height: auto;
    }
    header .nav {
        column-gap: 20px;
    }

    header nav {
        position: absolute;
        background: #0052a3;
        width: 80%;
        left: -100%;
        top: 75px;
        bottom: 0;
        z-index: 9;
        padding: 15px;
        transition: all .3s ease-in-out;
    }
    .show_menu header nav {
        left:0;
    }
    header .nav ul {
        justify-content: space-between;
        align-items: flex-start;
        list-style: none;
        gap: 0;
        flex-direction: column;
    }
    header .nav ul  li{
        width:100%;
    }
     header .nav ul  li a{
       padding:20px;
       width:100%;
       display:block;
    }
    header .container {
        padding: 10px;
    }
    header .logo svg{
        width: 150px;
    }
    .logout_btn {
        font-size: 14px;
        height: 45px;
        width: 120px;
    }
    .campaigns_header {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        gap: 20px;
    }
    .search_bar {
        width: 100%;
    }
    .title_cta {
        justify-content: space-between;
        column-gap: 20px;
        width: 100%;
    }
    h1, h2 {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: 1px;
    }
    .tab_contents .tab_content.active {
       overflow: auto;
    }
    .custom_modal .modal_wraper {
        height: 100%;
        border-radius: 0;
        padding: 15px;
    }
    .input_wrap_row {
        gap: 20px;
        flex-direction: column;
    }
    .input_wrap {
        width: 100% !important;
    }
    .campaign_meta {
        gap: 20px;
        flex-wrap: wrap;
    }
    .campaign_meta_item {
        padding: 10px;
        border-radius: 10px;
        width: 47%;
    }
    .campaign_meta_item P {
        font-size: 14px;
    }
    .campaigns_header.contact-list-page .title_cta {
        display: block;
    }
    .campaigns_header.contact-list-page .title_cta h1 {
        margin: 20px 0;
    }
    div#main_page {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .auto_height {
        padding-top: 0;
    }
}















































