/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 25/jul/2019, 15:39:53
    Author     : Jorge Rodrigues
*/

/* Cores Background */
.bgOrange{background-color: #FF8300;}
.bgRed{background-color: #E17272;}
.bgGrey{background-color: #E4E4E4;}
.bgGreen{background-color: #00987C !important;}
.bgLightGreen{background-color: #69B93D;}

*{
    font-family: 'Open Sans', sans-serif;
}

.events_main{
    position:relative;
    height: 100%;
    width: 100%;
    background-color: #00987c;
    
}

.event_list_holder{
    position: relative;
    width: 900px;
    height: 100%;
    margin: 0 auto;
}

.event_list_top{
    position: relative;
    width: 900px;
    height: 110px;
    top: 20px;
    display: flex;
    margin: 0 auto;
}

.event_teva_logo{
    background-image: url(../../logos/teva.svg);
    height: 70px;
    width: 70px;
    background-position: center;
    background-color: #fff;
    position: relative;
}

.event_list_title{
   position: relative;
    color: #fff;
    width: auto;
    line-height: 70px;
    margin-left: 20px;
    font-size: 20px;
    font-weight: bold;
}

.event_item_holder{
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.event_item_title{
    position: relative;
    height: calc(100% - 75px);
    font-size: 30px;
    color: #fff;
    line-height: 40px;
    margin-left: 45px;
    font-weight: bold;
    flex: auto;
    padding-top: 75px;
}

.event_item{
    position:relative;
    width: 100%;
    height: 100%;
    background-color: rgba(0,122,99,0.4);
    z-index: 1;
    border-radius: 10px;
    display:flex;
    box-shadow: 0 0 5px 0px rgba(0,0,0,0.4);
    cursor: pointer;
    overflow: hidden;
}

.event_item:hover{
    background-color: rgba(0,122,99,0.35);
}

.event_item_bg{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.event_item_status_holder{
    position: relative;
    width: 150px;
    height: 100%;
    display: flex;
    overflow: hidden;
    background-color: rgba(0,0,0,0.5);
}

.event_item_status{
    position:relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 40px;
    background-position-y: center;
    background-position-x: center;
    
}

.event_item_attendance{
    position:relative;
    width: 350px;
    height: 100%;
    background-color: rgba(0, 152, 124, 0.9);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.event_status_ACCEPTED{
    background-image: url('../../images/icons/00987C/checked_circle.svg');
}

.event_status_PENDING{
    background-image: url('../../images/icons/FFFFFF/empty_circle.svg');
}
.event_status_REJECTED{
    background-image: url('../../images/icons/others/cancel_circle.svg');
}

.event_attendance_text{
    position: relative;
    width: 200px;
    height: 100px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 18px;
    top: 45px;
    margin-left: 75px;
}

.event_attendance_icons{
    position: relative;
    background-color: #fff;
    width: 200px;
    height: 60px;
    margin-left: 75px;
    margin-right: 75px;
    border-radius: 50px;
    margin-bottom: 30px;
    display: flex;
}

.event_attendance_reject{
    position: relative;
    height: 60px;
    width: 105.5px;
    background-repeat: no-repeat;
    background-position: 8px;
    background-size: 46px;
    cursor: pointer;
}

.event_attendance_accept{
    position: relative;
    height: 60px;
    width: 105.5px;
    background-repeat: no-repeat;
    background-position: 46px;
    background-size: 46px;
    cursor: pointer;
}

.event_top{
    position:relative;
    width: 100%;
    height: 300px;
    background-position: center;
    background-size: cover;
}

.event_left{
    position: relative;
    width: 110px;
    background-color: #F5F5F5;
    max-height: 100%;
    min-height: 0px;
    height: fit-content;
}

.event_menu_list{
    position: relative;
    width: 60px;
    max-height: calc(100% - 100px);
    margin-top: 50px;
    z-index: 2;
}

.event_right{
    position:relative;
    background-color: #F5F5F5;
    float: right;
    overflow: auto;
    width: 790px;
}

.event_menu_item{
    position: relative;
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-radius: 10px;
    cursor: pointer;
    text-indent: 60px;
    box-shadow: 0 0 2px 0px rgba(0,0,0,0.4);
    margin-bottom: 10px;
    background-color: #00987C;
    color: #FFF;
    overflow: hidden;
    transition: width 0.5s;
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 20px;
    background-size: 20px;
}

.event_menu_item:hover{
    width: 200px;
}

.event_menu_item:nth-child(odd){
    background-color: #007A63;
}

.event_arrow{
    position: absolute;
    background-image: url(../../images/icons/others/event_triang.svg);
    width: 20px;
    height: 24px;
    float: right;
    background-repeat: no-repeat;
    right: 0px;
    top: 68px;
}

.event_menu_item_text{
    color: #FFF;
    font-size: 14px;
}

.event_right_holder{
    position:relative;
    width: 660px;
    margin-left: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.event_welcome_text{
    font-size: 12px;
    color: rgba(108, 109, 111, 1);
    line-height: 15px;
    text-align: justify;
}

.event_darker_bg{
    position:absolute;
    width: 100%;
    height: 300px;
    background-color: rgba(0,122,99,0.4);
}

.event_top_left{
    position: relative;
    width: 50%;
    height: 190px;
    float: left;
}

.event_top_left_title{
    position: absolute;
    color: #FFF;
    font-size: 36px;
    float: right;
    bottom: 60px;
    right: 50px;
    font-weight: bold;
    margin-right: 45px;
    width: 355px;
}

.event_top_right{
    position: relative;
    width: 50%;
    float: right;
    height: 190px;
}

.event_question{
    position: absolute;
    right: 0px;
    bottom: 20px;
    width: 450px;
    font-size: 12px;
}

.event_question_icon{
   position:relative;
}

.event_question_text{
    position:relative;
    color: #fff;
}

.event_live_sessions{
    position:relative;
    width: 450px;
    height: 200px;
    margin-top: 50px;
}

.event_session_holder{
    position:relative;
    width: 450px;
    height: 100%;
}

.event_session_title{
    position: relative;
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.event_session_subtitle{
    position: relative;
    width: 100%;
    height: 24px;
    color: #fff;
    line-height: 30px;
    display: flex;
    font-weight: 500;
    font-size: 14px;
}

.event_session_hours{
    position: relative;
    width: auto;
    margin-right: 20px;
    height: 30px;
    font-weight: 100;
}

.event_session_text{
    position: relative;
    width: 100%;
    line-height: 30px;
    height: auto;
    color: #fff;
    font-size: 26px;
    font-weight: 500;
}

/*slick*/
li.slick-active {
    background-color: transparent;
}

.slick-dots li button:before {
    opacity: 1 ;
    color: white !important;
    font-size: 8px;
}

:focus{
    outline: 0px;
}

/* */

.event_speaker_holder{
    position: relative;
    width: 660px;
    height: 70px;
    display: flex;
    border-radius: 10px;
    cursor: pointer;
    background-color: #f9f9f9;
    margin-bottom: 2px;
}

.event_speaker_holder:hover{
    background-color: rgba(228, 228, 228, 1);
}

.event_speaker_image{
    position: relative;
    width: 50px;
    height: 50px;
    top: 10px;
    margin-left: 15px;
    background-size: cover;
    border-radius: 50%;
}

.event_speaker_separator{
    position: relative;
    background-color: #00987c;
    height: 50px;
    width: 1px;
    top: 10px;
    margin-left: 15px;
}

.event_speaker_texts{
    position: relative;
    height: 50px;
    top: 15px;
    margin-left: 15px;
    width: 538px;
}

.event_speaker_title{
    line-height: 25px;
    color: #6C6D6F;
    font-weight: bold;
}

.event_speaker_subtitle{
    font-size: 12px;
    color: rgba(108, 109, 111, 1);
}

.event_speaker_arrow{
    position: relative;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    top: 10px;
    background-image: url(../../images/icons/6D6E70/arrow_right.svg);
    cursor: pointer;
    margin-bottom: 15px;
}

.event_speaker_info{
    display:none;
    width: auto;
    padding: 20px 50px 50px 95px;
    font-size: 12px;
    color: rgba(108, 109, 111, 1);
    line-height: 15px;
}

.event_bottom_holder{
    position:relative;
    width: 900px;
    margin: 0 auto;
    height: 100%;
    display: flex;
}

.event_bottom{
    position:relative;
    width: 100%;
    height: calc(100% - 300px);
    background-color: #f5f5f5;
}

.event_arrow_separator{
    position: absolute;
    width: 2px;
    background-color: #007A63;
    height: calc(100% - 50px);
    right: 0px;
    margin-top: 50px;
}

.event_day_holder{
    position:relative;
    height: 30px;
    width: 660px;
    background-color: #007A63;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    margin-bottom: 10px;
    cursor: pointer;
}

.event_day_icon_holder{
    position: relative;
    width: 15px;
    height: 100%;
    background-position: center;
    background-size: 14px;
    background-repeat: no-repeat;
    margin-right: 15px;
    cursor: pointer;
}

.event_day_icon{
    background-image: url('../../images/icons/others/full_circle.svg');
}

.event_day_text{
    position:relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.event_day_title{
    position:relative;
    width: 100%;
    height: 50%;
    font-size: 10px;
    color: #ffffff;
    display: flex;
}

.event_day_subtitle{
    position:relative;
    width: 100%;
    height: 50%;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.event_day_arrow{
    position: absolute;
    width: 25px;
    height: 100%;
    background-position: center;
    background-size: 25px;
    background-repeat: no-repeat;
    background-image: url('../../images/icons/FFFFFF/arrow_right.svg');
    right: 18px;
    top: 0px;
}

.event_day_arrow2{
    position: absolute;
    width: 25px;
    height: 100%;
    background-position: center;
    background-size: 25px;
    background-repeat: no-repeat;
    background-image: url('../../images/icons/6D6E70/arrow_right.svg');
    right: 18px;
    top: 0px;
}

.event_day_favorite{
    background-image: url('../../images/icons/others/full_circle.svg');
}

.event_day_not_favorite{
    background-image: url('../../images/icons/others/empty_circle.svg');
}

.text_white{
    color: #fff;
}

.text_light_grey{
    color: rgba(108, 109, 111, 0.8);
}

.text_grey{
    color: #6C6D6F;
}

.past_session{
    opacity: 0.5;
}

.bgGreen{
    background-color: #00987C !important;
}

.mainColor80{
   color: rgba(0, 152, 124, 0.8);
}

.session_day_holder{
    position:relative;
    height: 30px;
    width: 630px;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    margin-bottom: 10px;
}

.session_day_holder:nth-child(even){
    background-color: #ffffff;
}

.event_day_speaker{
    margin-left: 10px;
}

.event_day{
    position: relative;
    width: 100%;
    color: #555;
    border-radius: 10px;
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    text-indent: 15px;
    margin-bottom: 10px;
}

.event_location_image{
    position:relative;
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 30px;
}

.event_info_holder{
    position:relative;
    width: 100%;
    height: 110px;
    margin-bottom: 30px;
}

.event_info_title{
    position:relative;
    width: 100%;
    height: 30px;
    color: #292C31;
    font-size: 16px;
    font-weight: bold;
    line-height: 30px;
}

.event_info_left{
    position:relative;
    width: 50%;
    height: 75px;
    float:left;
}

.event_info_right{
    position:relative;
    width: 50%;
    height: 75px;
    float:right;
}

.event_info_subtitle{
    position: relative;
    height: 25px;
    line-height: 25px;
    font-size: 14px;
    color: #6C6D6F;
    font-weight: bold;
}

.event_info_text{
    position: relative;
    line-height: 20px;
    font-size: 12px;
    color: #6C6D6F;
}

.event_map{
    position:relative;
    height: 325px;
    width: 660px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #E4E4E4;
}

.event_map_title{
    position:relative;
    height: 40px;
    line-height: 40px;
    margin-left: 15px;
    color: #6C6D6F;
    font-size: 15px;
    font-weight: bold;
}

.session_top{
    position:relative;
    background-color: #007E67;
    width: 100%;
    height: 160px;
}

.session_time_holder{
    position: relative;
    padding: 40px;
    height: 80px;
    width: calc(100% - 100px);
}

.session_time_text{
    position: relative;
    height: 20px;
    width: 100%;
    color: #fff;
    line-height: 20px;
    font-size: 12px;
    font-weight: 100;
}

.session_time{
    position: relative;
    height: 80px;
    width: 100%;
    font-size: 70px;
    line-height: 55px;
    color: #fff;
    font-weight: 100;
}

.session_button_holder{
    position: absolute;
    background-color: #fff;
    width: 100px;
    height: 100px;
    top: 110px;
    right: 10px;
    border-radius: 50%;
    z-index: 1;
}

.session_button{
    position: relative;
    background-color: #007E67;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: calc(20px / 2);
    left: calc(20px / 2);
    box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.3);
    overflow: hidden;
    cursor: pointer;
    z-index: 10;
}

.session_button_text{
    position: relative;
    height: 80px;
    width: 80px;
    color: #fff;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    padding-top: 24px;
}

.session_info_holder{
    position:relative;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 20px;
    width: calc(100% - 80px);
    color: #6C6D6F;
}

.session_info_left{
    position:relative;
    width: 66%;
}

.session_info_title{
    position:relative;
    color: #6C6D6F;
    font-weight: 600;
    font-size: 18px;
    height: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    text-indent: 34px;
}

.session_info_subtitle{
    position: relative;
    font-size: 12px;
    padding-right: 50px;
    line-height: 16px;
}

.session_info_right{
    position:relative;
    width: 34%;
    padding-top: 30px;
}

.session_info_right_title{
   position:relative;
   height: 20px;
   font-weight: 600;
   font-size: 12px;
}

.session_info_right_text{
    position:relative;
    height: 30px;
    font-size: 12px;
    margin-bottom: 10px
}

.session_speakers_holder{
    position:relative;
    padding-left: 40px;
    padding-right: 40px;
    width:660px;
}

.session_speaker_title{
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: #6C6D6F;
    margin-bottom: 5px;
}

.ic_event_welcome{
    background-image: url('../../images/icons/others/ic_event_welcome.svg');
}

.ic_event_schedule{
    background-image: url('../../images/icons/others/ic_event_schedule.svg');
}

.ic_event_speaker{
    background-image: url('../../images/icons/others/ic_event_speaker.svg');
}

.ic_event_info{
    background-image: url('../../images/icons/others/ic_event_info.svg');
}

.ic_event_my_schedule{
    background-image: url('../../images/icons/others/ic_event_my_schedule.svg');
}

.event_item_attendance_holder{
    position:absolute;
    left: 100%;
    height: 200px;
}

.event_item_invite_attendance{
    position: absolute;
    width: 550px;
    height: 100%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    left: 100%;
    display: flex;
}

.event_item_attendance_invite_text{
    position: relative;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.event_item_attendance_invite{
    position: relative;
    width: 200px;
    height: 160px;
    background-color: rgba(0, 119, 97, 0.8);
    padding-top: 40px;
}

.event_item_attendance_box{
    position: relative;
    color: #00987C;
    height: 60px;
    width: 60px;
    margin: 0 auto;
    background-color: #fff;
    font-size: 40px;
    text-align: center;
    border-radius: 10px;
    line-height: 60px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.event_logout{
    position: absolute;
    right: 0px;
    top: -25px;
    background-image: url(../../images/icons/FFFFFF/logout.svg);
    cursor: pointer;
    height: 55px;
    width: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    background-color: #00987C;
    background-position-y: 25px;
    transition: top 0.25s;
}

.event_top  .event_logout:hover{
    top: -20px;
}

.event_invite{
    position: absolute;
    right: 50px;
    top: -25px;
    background-image: url(../../images/icons/FFFFFF/ticket_icon.svg);
    cursor: pointer;
    height: 55px;
    width: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    background-color: #00987C;
    background-position-y: 30px;
    transition: top 0.25s;
}

.event_top  .event_invite:hover{
    top: -20px;
}

.event_empty_favorites{
    position: relative;
    height: 20px;
    font-size: 12px;
    color: rgba(108, 109, 111, 1);
    line-height: 15px;
    
}

.session_btn_left{
    right: 170px;
}

.session_btn_right{
    right: 45px;
}

.session_questions_holder{
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
}

.session_questions_info{
    display:none;
    padding-top: 20px;
}

.session_questions_new{
    resize: none;
    border: 0px;
    background-color: #f1f1f1;
    width: 100%;
    height: 80px;
    border-radius: 12px;
    font-size: 12px;
    color: #6C6D6F;
    padding: 10px;
}

.session_questions_new_extra_info{
    position:relative;
}

.session_questions_anon{
    position: relative;
    width: 100%;
    height: 20px;
    display: flex;
}

.session_questions_char_left{
    position: absolute;
    right: 0px;
    top: 0px;
    color: #424242;
    font-size: 10px;
}

.session_questions_submit{
    position: relative;
    width: 300px;
    background-color: #00987C;
    height: 40px;
    border-radius: 10px;
    float: right;
    line-height: 40px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
}

.session_questions_buttons{
    position:relative;
    width: 100%;
    height: 50px;
}

.session_questions_text{
    font-size: 12px;
    color: #6C6D6F;
    font-weight: bold;
    height: 30px;
}

.session_questions_self_list{
    
}

.session_questions_self_item{
    position: relative;
    width: 100%;
    border: 1px #E4E4E4 solid;
    border-radius: 10px;
    min-height: 30px;
    line-height: 30px;
    padding-left: 10px;
    font-size: 10px;
    color: #424242;
}

.session_info_extra_info_holder{
    display:flex;
}

.session_bottom_holder{
    position: relative;
    overflow-y: auto;
    height: calc(100% - 160px);
    width: 100%;
}

.session_arrow{
    position:absolute;
    left: 0px;
    height: 20px;
    width: 20px;
    top:0px;
    background-image: url(../../images/icons/6D6E70/arrow_right.svg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: 24px;
}

.session_question_check_text{
    position: relative;
    font-size: 12px;
    line-height: 24px;
    color: #424242;
}

.session_question_holder{
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.session_question_user{
    position: relative;
    width: 100%;
    background-color: #d8d8d8;
    height: 30px;
    color: #000;
    font-size: 10px;
    line-height: 30px;
    text-indent: 20px;
}

.session_question_detail{
    position: relative;
    background-color: #F5F5F5;
    padding: 20px;
    font-size: 12px;
}

.events_dark_bg{
    position:absolute;
    height: 100vh;
    width: 100%;
    background-color: rgba(0,0,0,0.6);
    top: 0px;
    left: 0px;
    display: none;
    z-index: 10;
}

.event_item_more_info{
    position: relative;
    width: 150px;
    height: 20px;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    text-decoration: underline;
    top: calc(100px - 10px);
    line-height: 20px;
    cursor: pointer;
}

.event_item_more_info:hover{
    text-shadow: 0px 3px 5px rgba(0,0,0,0.9);
}

.event_more_info{
    position:relative;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    width: calc(100% - 40px);
    overflow: auto;
    background-color: #F5F5F5;
    height: calc(100% - 70px);
}

.event_more_info .event_day{
    color: #fff;
}

.event_more_info_title{
    position: relative;
    color: #fff;
    background-color: #00987C;
    padding-left: 20px;
    height: 45px;
    line-height: 45px;
}

.event_more_info .session_day_holder{
    cursor: default !important;
    background-color: #E4E4E4;
    width: calc(100% - 30px);
    height: 15px;
}

.event_more_info .session_day_holder:nth-child(even) {
    background-color: #ffffff;
}

.event_more_info .event_day_text{
    font-size: 12px;
    cursor:default;
}

.event_more_info .event_speaker_holder{
    cursor: default !important;
    margin-bottom: 20px;
}

.event_more_info .event_speaker_holder:nth-child(even){
    background-color: #ffffff;
}
.event_more_info .event_speaker_holder:hover{
    background-color: "";
}

.event_more_info .event_local_holder{
    display: flex;
}

.event_more_info .event_location_image{
    position: relative;
    width: 50%;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-bottom: 30px;
    margin-right: 20px;
}

.event_more_info .event_info_holder{
    position: relative;
    width: 50%;
    height: 110px;
    margin-bottom: 30px;
    top: 30px;
}

.event_item_show_invite{
    position: absolute;
    color: #fff;
    width: 100%;
    text-align: center;
    top: 155px;
    font-size: 12px;
}

.event_invites_holder{
    position: relative;
    width: calc(100% - 20px);
    height: calc(100% - 55px);
    padding: 10px;
}

.event_invites_image{
    position: relative;
    width: 100%;
    height: 150px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.event_invites_image_bg{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,122,99,0.4);
    border-radius: 10px;
}

.event_invites_title{
    position: relative;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    padding: 10px;
    height: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

.event_invites_capacity_holder{
    position: relative;
    width: calc(100% - 40px);
    padding: 10px;
    height: 30px;
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.event_invites_text{
    position: relative;
    font-size: 15px;
    color: #fff;
    height: 30px;
    width: 50%;
    line-height: 45px;
}
.event_invites_capacity{
    position: relative;
    font-size: 30px;
    color: #fff;
    height: 20px;
    text-align: right;
    width: 50%;
    font-weight: 800;
}
.event_invites_item_holder{
    position: relative;
    width: calc(100% - 2px);
    height: calc(100% - 162px);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1;
    padding: 1px;
    margin-top: 10px;
    border-radius: 10px;
}

.event_invites_item{
    position: relative;
    background-color: #e4e4e4;
    margin: 10px;
    border-radius: 10px;
    padding: 15px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    box-shadow: 0 2px 2px 0px rgba(0,0,0,0.2);
    text-indent: 10px;
}
.event_invites_item_title_holder{
    position: relative;
    width: 100%;
    height: 40px;
    display: flex;
}
.event_invites_item_title_left_holder{
    position: relative;
    width: 60%;
}
.event_invites_item_title_left_text{
    position: relative;
    color: #6C6D6F;
    font-size: 18px;
    font-weight: 800;
}
.event_invites_item_title_left_text2{
    position: relative;
    font-size: 12px;
    color: #6C6D6F;
}
.event_invites_item_title_right_holder{
    position: relative;
    width: 40%;
    line-height: 20px;
}
.event_invites_item_title_right_text{
    position: relative;
    color: #6C6D6F;
    font-size: 12px;
    text-align: right;
}
.event_invites_item_pharmacy_holder{
        position: relative;
    height: 20px;
    display: flex;
}
.event_invites_item_pharmacy_left_text{
    position: relative;
    line-height: 20px;
    text-align: left;
    font-size: 11px;
    color: #aaa;
    width: 60%;
}

.event_invites_bg_left_circle{
    position:absolute;
    width: 20px;
    height:20px;
    background-color: #fff;
    border-radius: 50%; 
    top: calc(50% - 10px);
    left: -10px;
    box-shadow: inset 0 2px 2px 0px rgba(0,0,0,0.2);
}
.event_invites_bg_right_circle{
    position:absolute;
    width: 20px;
    height:20px;
    background-color: #fff;
    border-radius: 50%; 
    top: calc(50% - 10px);
    right: -10px;
    box-shadow: inset 0 2px 2px 0px rgba(0,0,0,0.2);
}
.event_invites_item_pharmacy_right_text{
    position: relative;
    line-height: 20px;
    text-align: right;
    font-size: 12px;
    color: #aaa;
    width: 40%;
}

.event_invites_bg_dash{
    position: absolute;
    background-image: url(../../images/icons/FFFFFF/dash_repeat.svg);
    height: calc(100% - 30px);
    width: 2px;
    background-repeat-y: repeat;
    background-size: 1.5px;
}

.event_no_items{
    position: relative;
    width: 100%;
    text-align: center;
    color: #fff;
    line-height: 40px;
}