/* Copyright 2014-2015 EPD Tech. All rights reserved */
html{
    height: 100%;
    /*    overflow: -moz-scrollbars-vertical;
        overflow-y: scroll;*/
}
body {
    height: 100%;
    position: relative;
    font-family: 'Ubuntu', sans-serif;
}
#epd-alert{
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 100px;
    background-color: darkred;
    color: white;
    z-index: 99999;
}
.epd-pointer{
    cursor: pointer;
}
.extra-large{
    font-size: 42px;
}
.epd-red{
    color: red;
}
.epd-green{
    color: #75ba00;
}
.epd-dark-green{
    color: #6a9c06;
}
.epd-white{
    color: white;
}
.epd-curtain{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #625f5c73;
    top: 0;
    left: 0;
}
.epd-highlight{
    background-color: var(--highlight-background);
    padding: 2px 1px;
    color: var(--highlight-text);
}
.epd-loading-input {
    background-color: #ffffff;
    background-image: url("/public/pd_content/images/0/ajax-loader.gif");
    background-size: 15px 15px;
    background-position:right center;
    background-repeat: no-repeat;
}
/*.epd-dashed-divider{

}*/
.force-select {
    -webkit-user-select: all;  /* Chrome 49+ */
    -moz-user-select: all;     /* Firefox 43+ */
    -ms-user-select: all;      /* No support yet */
    user-select: all;          /* Likely future */
}

#grid_table *:not(input),
#grid_table *:not(textarea),
#grid_table *:not(div.epd-chat-msg){
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.btn.float-right{
    margin-left: 15px;
}
.btn.float-left{
    margin-right: 15px;
}
.pre-msg{
    display: block;
    padding: 0;
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background-color: inherit;
    border: none;
    border-radius: 0;
    font-family:inherit;
    font-size: inherit;
    white-space: pre-wrap; /* CSS3 */
    white-space: -moz-pre-wrap; /* Mozilla, post millennium */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    overflow: hidden;
}
*::-webkit-scrollbar {
    width: 12px;
    cursor: ne-resize;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
.link {
    color: var(--global-link-text) !important;
}
.red-link,
.red-link:hover,
.red-link:active,
.red-link:visited{
    color: red;
}
.unselectable {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
.shadowed,/*#epd-apps-toolbar-wrapper-top div.epd-global-menu-item,*/
#epd-apps-toolbar-wrapper-top #epd-apps-toolbar{
    box-shadow: 5px 5px 10px #3F3C3C;
    -webkit-box-shadow: 5px 5px 10px #3F3C3C;
    -moz-box-shadow: 5px 5px 10px #3F3C3C;
}
.shadowed-up,/*#epd-apps-toolbar-wrapper-bottom div.epd-global-menu-item,*/
#epd-apps-toolbar-wrapper-bottom #epd-apps-toolbar{
    box-shadow: 5px -5px 10px #3F3C3C;
    -webkit-box-shadow: 5px -5px 10px #3F3C3C;
    -moz-box-shadow: 5px -5px 10px #3F3C3C;
}
.shadow-up{
    box-shadow: 2px -5px 10px #2125292b;
    -webkit-box-shadow: 2px -5px 10px #2125292b;
    -moz-box-shadow: 2px -5px 10px #2125292b;
}
#epd-comm-group-friends-list-tools{
    text-align: center;
    padding: 6px;
}
#epd-comm-group-friends-list-tools>a{
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    margin: 0 8px;
    background-color: var(--modal-contacts-tab_select-background);
    padding: 2px 8px;
    border-radius: 4px;
}
/*////////////////////////////////////////// ANIMATION /////////////////////////////////////*/
@-webkit-keyframes wave {
    0% {
        -webkit-transform: rotate(0deg) translate(0vh);
        transform: rotate(0deg) translate(0vh);
    }
    50% {
        -webkit-transform: rotate(30deg) translate(-1vh);
        transform: rotate(30deg) translate(-1vh);
    }
    100% {
        -webkit-transform: rotate(0deg) translate(0vh);
        transform: rotate(0deg) translate(0vh);
    }
}

@-moz-keyframes wave {
    0% {
        -moz-transform: rotate(0deg) translate(0px);
        transform: rotate(0deg) translate(0px);
    }
    50% {
        -moz-transform: rotate(30deg) translate(50px);
        transform: rotate(30deg) translate(50px);
    }
    100% {
        -moz-transform: rotate(0deg) translate(0px);
        transform: rotate(0deg) translate(0px);
    }
}

@keyframes wave {
    0% {
        -moz-transform: rotate(0deg) translate(0px);
        -webkit-transform: rotate(0deg) translate(0px);
        -o-transform: rotate(0deg) translate(0px);
        transform: rotate(0deg) translate(0px);
    }
    50% {
        -moz-transform: rotate(30deg) translate(50px);
        -webkit-transform: rotate(30deg) translate(50px);
        -o-transform: rotate(30deg) translate(50px);
        transform: rotate(30deg) translate(50px);
    }
    100% {
        -moz-transform: rotate(0deg) translate(0px);
        -webkit-transform: rotate(0deg) translate(0px);
        -o-transform: rotate(0deg) translate(0px);
        transform: rotate(0deg) translate(0px);
    }
}

#landing-page-boy {
    width: 14vh;
}

#auth-buttons{
    position: absolute;
    height: 200px;
    margin: auto;
    width: 290px;
    left: 0;
    right: 0;
    top:0;
}

#landing-page-login {
    position: absolute;
    display: block;
    background-image: url('/public/pd_content/images/0/login.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    left: 0;
    top: 10px;
    width: 140px;
    height: 90px;
    font-size: 20px;
    font-weight: 700;
    color: black;
    text-align: center;
    line-height: 80px;
}
#landing-page-login a{
    color: black;
}
#landing-page-signup {
    position: absolute;
    display: block;
    background-image: url('/public/pd_content/images/0/signup.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    width: 170px;
    height: 84px;
    left: 120px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 70px;
}
#landing-page-signup a{
    color: black;
}
#landing-page-envsmanager {
    position: absolute;
    display: block;
    background-image: url('/public/pd_content/images/0/login.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    width: 170px;
    height: 110px;
    top: 0px;
    left: 280px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 85px;
}
#landing-page-envsmanager a{
    color: black;
}
#main-logo{
    position: absolute;
    left: 20px;
    top: -10px;
    width: 220px;
    -ms-transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    transform: rotate(330deg);
}
/*//////////////////////////////////////////  MAIN LAYOUT /////////////////////////*/
#main_wrapper{
    height: 100%;
    margin: 0 auto -25px 0;
    padding: 0;
    background-image: url('/public/pd_content/images/0/main-bg.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 100%;
}

#content{
    /*    height: inherit;
	display: flex;
	flex: 1;
	flex-direction: column;
	align-content: center;
	align-items: center;
	align-self: center;*/
    height: inherit;
}
#main-panel-wrapper{
    height: inherit;
    width: 100%;
    flex-direction: column;
    padding: 5px;
    text-align: center;
    /*background-color: #87d6f899;*/
}
#epd-descr-popup{
    position: absolute;
    left: 7%;
    top: 18%;
    width: 75%;
    min-height: 100px;
    overflow: hidden;
    border: solid 5px rgb(241,92,34);
    border-radius: 10px;
    background-color: white;
    display: none;
    z-index: 200;
}
#epd-descr-popup h4{
    margin: 10px
}
#epd-descr-popup p{
    margin: 10px
}

/*.bottom-pusher{
    position: relative;
    height: 30px;
}*/
#footer{
    position: relative;
    /*height: 30px;*/
}
/*/////////////////////////////////////////////////////////////////////////////////*/
.form-check label{
    vertical-align: middle;
}
.greyedArea{
    background-color: white;
    filter:alpha(opacity=0.50); /* IE */
    opacity: 0.5; /* Safari, Opera */
    -moz-opacity:0.50; /* FireFox */
    height: 100%;
    width: 100%;
    background-repeat:no-repeat;
    background-position:center;
    position:absolute;
    top: 0px;
    left: 0px;
    display: none;
    border-radius: 10px;
}
.max-width{
    flex: 1;
}
#main_wrapper .greyedArea{
    z-index: 199;
}
.modalMsgBox .modal-content{
    /*background-color: #ccffff;*/
    background-color: var(--modal-box-background);
    /* border: solid 8px #66ccff; */
    color: var(--modal-box-text);
    /* opacity: 0.9; */
    min-height: 200px;
    border-radius: 0;
}
.modalMsgBox .modal-body{
    min-height: 120px;
}
.modal-footer{
    border-top: 0px;
    /*padding: 15px 0 0 0;*/

}

.epd-contacts-modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*max-width: 500px;*/
    background-color: var(--modal-contacts-background);
    margin: auto;
    /*z-index: 9999;*/
    z-index: 1111;
}
.epd-contacts-modal .modal-body{
    position: absolute;
    top: 20px;
    bottom: 60px;
    left: 0;
    right: 0;
}
.epd-contacts-modal .tab-content{
    position: absolute;
    bottom: 0;
    top: 75px;
    left: 15px;
    right: 15px;
    overflow: hidden;
}
.epd-contacts-modal .tab-pane{
    height: 100%;
}
.epd-contacts-modal .modal-footer{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.modal-header{
    padding: 5px 15px 5px 15px;
    background-color: var(--app-header-background);
    border-bottom: solid 1px white;
    color: var(--app-header-text);
    min-height: 31px;
    font-weight: 700;
    display: block;
    border-radius: 0;
}
.modal-header .epd-close-modal{
    font-size: 32px;
    line-height: 16px;
    cursor: pointer;
}
.ajax-waiting,
.ajax-large-waiting,
.video-waiting,
.media-failed{
    position: absolute;
    top: 0;bottom: 0;left: 0;right: 0;
    margin: auto;
    width: 100%; height: 100%;
    z-index: 99999;
}
.ajax-waiting,
.video-waiting{
    background: url('/public/pd_content/images/0/ajax-loader.gif') no-repeat center;
}
.ajax-large-waiting{
    display: none;
    background: url('/public/pd_content/images/0/ajax-loader_large.gif') no-repeat center;
}
.media-failed{
    position: inherit;
    /* display: block; */
    width: 100%;
    background: url('/public/pd_content/images/0/failed.png') no-repeat center;
    color: white;
    mix-blend-mode: difference;
    border: 2px solid darkred;
    border-radius: 4px;
    padding:2px;
}
.media-failed div{
	margin:2px;
}

.col-max-xs{
    width: 80px;
    text-align: center;
}
.col-max-xxs{
    width: 20px;
    text-align: center;
}
.col-max-xs span{
    margin-left: 0;
}
.col-max-sm{
    width: 160px;
}
.col-max-md{
    width: 300px;
}
span.epd-emojis-close-x-button{
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 38px;
    line-height: 38px;
    color: var(--emoji-btn-close);
    cursor: pointer;
}
#epd-emoji-icon{
    position: absolute;
    font-size: 30px;
    color: darkblue;
    right: 20px;
    cursor: pointer;
    bottom: 20px;
    /*z-index: 10000;*/
}
#epd-emojis-menu{
    padding: 10px;
    background: rgba(148, 210, 224, 0.85);
    border: solid 4px #2e6da4;
    border-radius: 6px;
    position: absolute;
    left: 0;
    width: 100%;
    top: 280px;
    z-index: 9999;
}
video:not(#epd-video-stream):not(.epd-email-emb-video-file){
    position: absolute;
    top: 0;bottom: 0;
    left: 0;right: 0;
    margin: auto;
}
.epd-cal-logo{
    display: inline-block;
    width: 60px;
    margin-right: 20px;
}
.epd-cal-logo-img{
    width: 100%;
}
.close-lg{
    font-size: 34px;
}
.fa-ok-green{
    color: #75ba00;
}
.epd-modal-xl{
    width: 95%;
    height: 95%;
}


/*Scheduler*/
.epd-scheduler-suggestion{
    cursor: pointer;
    display: inline-block;
    border-radius: 2px;
    padding: 4px 15px;
}
.epd-scheduler-suggestion:hover{
    background-color: #337ab7;
    color: white;
}
#epd-invite-to-share-cal{
    position: absolute;
    width: 460px;
    border: 4px solid #337ab7;
    border-radius: 8px;
    padding: 15px;
    background-color: #37b2b7;
    top: 50px;
    left: 50px;
    color: white;
}
#epd-invite-to-share-cal textarea{
    resize: none;
}
.epd-no-shared-cals-icon-tooltip{
    cursor: pointer;
    padding-left: 15px;
}
.epd-suggested-slots-list{
    display: none;
}
#calendar {
    max-width: 100%;
}
#calendar>div.fc-toolbar>div.fc-center>h3{
    margin: 0;
}

/*#epd-details-emb-modal,*/
#epd-msg-emb-modal{
    /*    display: none;
	position: absolute;
	left: 25px;
	top: 0;
	border: solid 8px #606dbc;
	border-radius: 8px;
	background-color: #c0f1e6;
	z-index: 9;*/
    position: absolute;
    left: 25px;
    top: 0;
    margin: auto;
    max-width: 600px;
    border: solid 8px #606dbc;
    border-radius: 8px;
    background-color: #feeebd;
    z-index: 9;
}

.epd-details-emb-dialog{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top:100px;
    max-width: 600px;
    border: solid 8px #606dbc;
    border-radius: 8px;
    background-color: #feeebd;
    padding:10px !important;
    z-index: 9;
}
.epd-details-emb-dialog >.modal-content {
	background-color: #feeebd !important;
    border: none;
}
#epd-overlap-msg-box-wrapper{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 99999;
}
#epd-overlap-msg-box{
    position: absolute;
    left: 0; right: 0;
    top: 45px;
    margin: auto;
    max-width: 600px;
    border: solid 8px #606dbc;
    border-radius: 8px;
    background-color: #feeebd;
}
#epd-details-emb-modal h3{
    color: #465298;
    text-align: center;
}
#epd-details-emb-modal .epd-label{
    font-size: 20px;
    color: #465298;
    font-weight: 700;
}
#epd-init-pd-what,
#epd-init-pd-when,
#epd-init-pd-where{
    margin-bottom: 15px;
}
#epd-init-pd-what select,
#epd-init-pd-when input,
#epd-init-pd-where select{
    color: #31708F;
    background-color: rgb(255, 220, 104);
    font-weight: 700;
    text-align: center;
    /*margin-top: 39px;*/
    cursor: pointer;
}
#epd-init-pd-when div.form-group{
    margin-bottom: 0;
}
#epd-init-pd-when span.input-group-text{
    color: #ffffff;
    background-color: #606dbc;
    border: 1px solid #ccc;
}
#epd-pd-when,
#epd-pd-when-edit{
    display: none;
}
#epd-pd-when,
#epd-pd-what-ro,
#epd-pd-where-ro{
    font-size: 18px;
    font-weight: 500;
    color: #465298;
}

#epd-datetimepicker-from-date{
    margin-bottom: 2px;
}

#epd-add-edit-participants{
    color: #feeebd;
    font-size: 16px;
    padding: 0 10px;
    margin-left: 15px;
}
#epd-add-participants>span{
    color: green;
    font-size: 24px;
}
#epd-add-participants-msg{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: gray;
    width: 100%;
    overflow-wrap: normal;
    display: block;
}
#epd-msg-emb-modal>div.modal-footer>button,
#epd-msg-emb-modal>div.modal-body>h3,
#epd-scheduler-cancel-pd-btn{
    display: none;
}
#epd-scheduler-legend{
    text-align: left;
}
#epd-scheduler-legend span{
    display: block;
    width: 40px;
    height: 20px;
    margin-right: 10px;
    float: left;
    border-radius: 2px;
}
#epd-scheduler-legend td{
    vertical-align: top;
    padding-right: 10px;
}
.epd-scheduler-user-avatar {
    position: relative;
    float: left;
    height: 20px;
    width: 54px;
}
.epd-scheduler-user-avatar>img {
    position: absolute;
    margin: auto;
    top: -50px;
    bottom: -50px;
    left: -50px;
    right: -50px;
    width: 50px;
}
#epd-init-pd-what-custom,
#epd-init-pd-where-custom{
    display: none;
    margin-top: 10px;
    width: 100%;
    resize: none;
    color: black;
    /*    color: #31708F;
	background-color: #99DDF0;*/
    font-weight: 700;
}


/*////////////////////////// NOTIFICATION ///////////////////////////////*/
#notifications table{
    background-color: rgba(99, 232, 212, 0.62);
}
#notifications table td:nth-child(2){
    width: 100%;
}
#notifications table td:nth-child(1) input{
    height: 20px;
    width: 18px;
    margin-top: 8px;
    margin-left: 10px;
    margin-right: 10px;
}

#epd-sel-all-notifs{
    width: 18px;
    height: 18px;
    margin: 10px;
    margin-left: 17px;
}

#notifications-header button{
    margin-left: 10px;
}

#notifications span.new-notification{
    margin-right: 10px;
}
/*/////////////////////////   AVATARS //////////////////////////////////*/
#epd-custom-avatar-uploader{
    text-align: center;
}
#epd-custom-avatar-uploader>a{
    cursor: pointer;
}
#epd-custom-avatar-uploader>a:hover{
    text-decoration: none;
}
#epd-capture-custom-avatar-btn{
    text-decoration: none;
}
#epd-custom-avatar-uploader>a>span{
    font-size: 42px;
    color: var(--modal-uploader-text);
}
#epd-custom-avatar-uploader>a>p{
    color: var(--modal-uploader-text);
}
#epd-custom-avatar-uploader-form,
#epd-custom-container-uploader-form,
#epd-custom-image-uploader-form,
#epd-custom-container-camera-form,
#epd-custom-avatar-camera-form,
#epd-custom-bg-camera-form{
    visibility: hidden;
}
#epd-custom-avatar-modal-body{
    position: relative;
    width: 95%;
    min-height: 490px;
}
#epd-custom-avatar-editor{
    position: absolute;
    width: 100%;
    height: 420px;
}

#epd-custom-container-modal-body,
#epd-custom-bg-modal-body{
    position: relative;
    padding: 20px 0;
}
#epd-custom-bg-editor{
    width: 100%;
    height: 700px;
}
#epd-custom-avatar-editor-preview>div.form-group,
#epd-custom-bg-editor-preview>div.form-group,
#epd-custom-container-editor-preview>div.form-group{
    width: 250px;
    left: 0;
    right: 0;
    margin: auto;
}
#epd-custom-avatar-editor-preview,
#epd-custom-bg-editor-preview,
#epd-custom-container-editor-preview{
    display: none;
    text-align: center;
}
#epd-custom-avatar-uploader-progress-wrapper
#epd-custom-bg-uploader-progress-wrapper{
    height: 30px;
}
#epd-video-stream,
#epd-custom-avatar-capture,
#epd-custom-bg-capture,
#epd-custom-container-capture{
    width: 552px;
    min-height: 420px;
    text-align: center;
}
#epd-tmp-canvas{
    display: none;
}
#epd-capture-buttons{
    margin-top: 15px;
}
#epd-capture-btn-ok,
#epd-capture-btn-try-again{
    display: none;
}
/*/////////////////////////   CONTAINERS //////////////////////////////////*/
#epd-custom-container-uploader{
    text-align: center;
}
#epd-custom-container-uploader>a{
    cursor: pointer;
    color: var(--modal-uploader-text);
}
#epd-upload-custom-container-btn{
    margin-left: 30%;
    float: left;
}
#epd-capture-custom-container-btn{
    margin-left: 20px;
    float: left;
    text-decoration: none;
}
#epd-custom-container-uploader>a>span{
    font-size: 42px;
    color: var(--modal-uploader-text);
}
#epd-custom-container-uploader-progress-wrapper{
    height: 30px;
}
#epd-custom-container-editor{
    width: 100%;
    height: 420px;
}
#epd-tmp-canvas{
    display: none;
}
#epd-capture-buttons{
    margin-top: 15px;
    width: 400px;
}
#epd-capture-btn-ok,
#epd-capture-btn-try-again{
    display: none;
}
.modalMsgBox .modal-body {
    min-height: 300px;
}
#epd-app-set-container-wrapper{
    height: 120px;
    text-align: center;
}
#epd-app-set-container{
    position: relative;
    display: inline-block;
    max-width: 554px;
    overflow: hidden;
    /*height: 60px;*/
}
.modal-body > #epd-app-set-container{
    position: relative;
    display: inline-block;
    max-width: 468px;
    overflow: hidden;
    /*height: 60px;*/
}
#epd-container-img{
    position: absolute;
    /*bottom: 5px;*/
    left: -50px;
    right: -50px;
    margin: auto;
    height: 80px;
    cursor: pointer;
}
#epd-container-menu{
    /*    position: absolute;
	top: 80px;
	left: -26px;
	width: 580px;
	opacity: 0.9;
	display: none;
	z-index: 200;*/
    /* overflow-y: scroll; */
    display: inline-block;
}
.epd-container-to-choose{
    display: block;
    position: relative;
    width: 92px;
    height: 92px;
    padding: 2px;
    overflow: visible;
    float: left;
}
.epd-container-to-choose:hover,
.epd-container-to-choose_hover{
    -webkit-box-shadow: 0 0 6px 2px #25b7d3 inset;
    -moz-box-shadow: 0 0 6px 2px #25b7d3 inset;
    box-shadow: 0 0 6px 2px #25b7d3 inset;
    border-radius: 10px;
}
.epd-container-to-choose img{
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    margin: auto;
    height: 80px;
    opacity: 1;
    cursor: pointer;
}

.epd-container-to-choose-custom{
    text-align: center;
    color: #003c58;
    cursor: pointer;
}
.epd-container-to-choose-custom>p{
    color: #003c58;
    font-size: 14px;
    line-height: 14px;
    cursor: pointer;
}
.epd-container-to-choose-custom>span{
    color: #003c58;
    font-size: 32px;
    margin-top: 12px;
    cursor: pointer;
}
#epd-friends-settings-form .modal-body,
#epd-file-info-form .modal-body,
#epd-email-info-form .modal-body,
#epd-post-info-form .modal-body,
#epd-track-info-form .modal-body,
#epd-room-info-form .modal-body{
    text-align: center;
}
#epd-friends-set-header,
#epd-file-info-header,
#epd-email-info-header,
#epd-track-info-header,
#epd-post-info-header{
    width: 100%;
    padding: 5px 15px 5px 15px;
    background-color: var(--app-header-background);
    border-bottom: solid 1px #337ab7;
    color: white;
    z-index: 299;
}
#epd-file-info-header{
    background-color: #b1b3fa;
    border-bottom: solid 1px #8d8fc6;
}
#epd-friends-settings-form .modal-header,
#epd-file-info-form .modal-header,
#epd-email-info-form .modal-header,
#epd-post-info-form .modal-header,
#epd-track-info-form .modal-header,
#epd-room-info-form .modal-header
{
    background-color: var(--modal-box-content-background);
}

#epd-friends-settings-form h5,
#epd-file-info-form h5,
#epd-email-info-form h5,
#epd-post-info-form h5,
#epd-track-info-form h5,
#epd-room-info-form h5
{
    overflow-wrap: break-word;
    overflow: auto;
}

#epd-room-info-form .recipients-list {
    display: flex;
    flex-wrap: wrap;
    max-height: 264px;
    overflow-y: auto;
}

#epd-room-info-form .recipient {
    display: flex;
    flex-direction: column;
    margin: 10px;
    width: calc(1/3 * 100% - 20px);
}

#epd-room-info-form .recipient-img {
    display: flex;
    align-self: center;
    height: 80px;
}

#epd-room-info-form .recipient-img > img {
    height: 100%;
}

#epd-room-info-form .recipient-name {
    position: relative;
    width: 120px;
}

#epd-room-info-form .recipient-name > h5 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.text-primary.epd-friends-name-in-groups{
    color: var(--modal-contacts-content-item-text) !important;
}

#epd-container-menu .pagination{
    margin: 10px 0;
}
#epd-container-menu .pagination>.disabled>span,
#epd-container-menu .pagination>.disabled>span:hover,
#epd-container-menu .pagination>.disabled>span:focus,
#epd-container-menu .pagination>.disabled>a,
#epd-container-menu .pagination>.disabled>a:hover,
#epd-container-menu .pagination>.disabled>a:focus {
    color: #003c58;
    cursor: not-allowed;
    background-color: transparent;
    border: 1px solid  #003c58;
}
#epd-container-menu .pagination>li>a, .pagination>li>span {
    color:  #003c58;
    background-color: transparent;
    border: 1px solid  #003c58;
}
#epd-container-menu .pagination>.active>a,
#epd-container-menu .pagination>.active>span,
#epd-container-menu .pagination>.active>a:hover,
#epd-container-menu .pagination>.active>span:hover,
#epd-container-menu .pagination>.active>a:focus,
#epd-container-menu .pagination>.active>span:focus {
    z-index: 2;
    color: white;
    cursor: default;
    background-color: #003c58;
    border-color: #003c58;
}
#epd-container-menu .pagination>li>a:hover,
#epd-container-menu .pagination>li>span:hover,
#epd-container-menu .pagination>li>a:focus,
#epd-container-menu .pagination>li>span:focus {
    color: #003c58;
    background-color: white;
    border-color: #003c58;
}
#epd-containers-paginator{
    text-align: center;
    clear: both;
    /*   margin-top: 280px;*/
}
#epd-containers-inner-wrapper{
    width: 331px;
    display: inline-block;
    min-height: 184px;
}
/*/////////////////////////   BACKGROUNDS //////////////////////////////////*/
#epd-custom-bg-uploader{
    text-align: center;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}
#epd-custom-bg-uploader>a{
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}
#epd-upload-custom-bg-btn{
    margin-right: 5px;
}
#epd-capture-custom-bg-btn{
    margin-left: 5px;
}
#epd-custom-bg-uploader>a>span{
    font-size: 42px;
    color: var(--modal-uploader-text);
}
#epd-custom-bg-uploader>a>p{
    color: var(--modal-uploader-text);
}
#epd-custom-bg-uploader-form{
    visibility: hidden;
}
#epd-custom-bg-uploader-progress-wrapper{
    height: 30px;
}
#epd-custom-bg-capture{
    /*position: absolute;*/
    left: 0;right: 0;
    margin: auto;
    width: 552px;
    min-height: 420px;
    text-align: center;
}
.epd-bg-to-choose{
    display: block;
    position: relative;
    width: 96px;
    height: 96px;
    padding: 2px;
    overflow: visible;
    float: left;
    cursor: pointer;
}
.epd-bg-to-choose>img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.epd-bg-to-choose-custom{
    text-align: center;
    color: white;
}
.epd-bg-to-choose-custom>p{
    color: white;
    font-size: 14px;
    line-height: 14px;
}
.epd-bg-to-choose-custom>span{
    color: white;
    font-size: 32px;
    margin-top: 12px;
}
.epd-bg-to-choose:hover,
.epd-bg-to-choose_hover{
    -webkit-box-shadow: 0 0 6px 2px gold inset;
    -moz-box-shadow: 0 0 6px 2px gold inset;
    box-shadow: 0 0 6px 2px gold inset;
    border-radius: 10px;
}
#epd-app-set-custom-bg>img{
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: 1;
}
#epd-app-set-custom-bg>h3,
#epd-app-set-custom-bg>button{
    z-index: 100;
    position: relative;
}
#epd-app-set-custom-bg>h3{
    background-color: var(--settings-item-text-background);
    border-radius: 10px;
}
/*APP EMAIL*/
#epd-app-email-confirmation-modal{
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #7777777d;
    z-index: 9999;
    padding: 5px;
}
#epd-app-email-confirmation-modal>div{
    border: solid 8px #606dbc;
    border-radius: 8px;
    background-color: rgba(255, 219, 87, 0.95);
    margin: auto;
    z-index: 1000;
    padding: 15px;
    color: #3d4678;
    font-size: 18px;
    font-weight: 500;
}

/*/////////////////////////////////////////*/

/*////////  UPLOADER/SINGLE IMAGE ESDITOR ///////////////*/
#epd-custom-image-editor {
    width: 514px; height: 391px;
    margin-bottom: 40px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
.close-modal-x {
    position: relative;
    margin-left: 15px;
    line-height: 24px;
    font-size: 48px;
    cursor: pointer;
    z-index: 9999;
    text-align: right;
}
/*.close-modal-x {
    position: relative;
     top: 20px;
     right: 20px;
    margin-bottom: 15px;
    line-height: 18px;
    font-size: 48px;
    cursor: pointer;
    z-index: 9999;
    text-align: right;
}*/
.epd-preview-carousel{
    position: relative;
    /*width: 200px;*/
    left: 0;
    right: 0;
    margin: auto;
    height: 100%;
}
.epd-preview-carousel img{
    display: block;
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    /*position: absolute;*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
#epd-uploader-captions-sharing-form{
    height: 100%;
    position: relative;
    /*overflow-y: auto;*/
    /*padding: 0 5px;*/
}

#epd-media-full{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    z-index: 10000;
    /*background-color: rgba(255, 162, 0, 0.94);*/
    background-color: var(--modal-media-full-background);
    text-align: center;
}
#pd-post-images-full-carousel,
#pd-post-images-full-carousel div.carousel-inner,
#pd-post-images-full-carousel div.item
{
    height: 100%;
}
#pd-post-images-full-carousel .carousel-inner>.item>img{
    position: relative;
    height: 100%;
    width: auto;
    left: 0;
    right: 0;
    margin: auto;
}
.carousel-caption{
    font-size: 1.5rem;
    overflow-wrap: break-word;
}
.epd-carousel-cover{
    position: absolute;
    top: 0;bottom: 0;left: 0;right: 0;
    background: lightgrey;
    opacity: 0.6;
    z-index: 10000;
}
#epd-image-full{
    /*margin: auto;
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;*/
    touch-action: manipulation;
    max-height: 80%;
    max-width: 100%;
}
#epd-media-full a.close-images-full{
    position: absolute;
    right: 40px;
    top: 40px;
    font-size: 42px;
    z-index: 10001;
}
#epd-full-video{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-top: 20px;
}

/*SEARCH*/
#epd_app_search_auto_complete_list{
    /*font-size: 20px;*/
    font-weight: 100;
    position: absolute;

    background: var(--autocomplete-background);
    color: white;
    border-radius: 6px;
    z-index: 9999;
}
#epd_app_search_auto_complete_list li.epd_app_search_auto_complete_li{
    cursor: pointer;
    padding: 2px 4px;
}
#epd_app_search_auto_complete_list li.epd_app_search_auto_complete_li:hover,
#epd_app_search_auto_complete_list li.epd_app_search_auto_complete_li.epd-ac-selected{
    background-color: var(--autocomplete-background-hover);
    color: var(--autocomplete-text-hover);
    font-weight: 500;
}
#epd-contacts-modal-search div.input-group-text{
    background-color: #ffffff;
    color: #0052a2;
    cursor: pointer;
    /*width: 30px;*/
}
#epd-contacts-group-tabs a{
    color: var(--modal-contacts-tab-text);
}
#epd-contacts-group-tabs-contacts.active,
#epd-contacts-group-tabs-groups.active {
    background-color: var(--modal-contacts-tab-background);
}

.fas.fa-info-circle.epd-contacts-additional-info-handler::before{
    background-color: var(--modal-contacts-content-item-btn-info-background);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

#epd-overall-msg-box{
    display: none;
    position: fixed;
    /* top: 60px; */
    left: 0;
    right: 0;
    margin: auto;
    max-width: 560px;
    /* width: max-content; */
    /* min-width: 200px; */
    background-color: var(--modal-box-background);
     border: solid 8px var(--modal-box-border);
    color: var(--modal-box-text);
    /* border-radius: 10px; */
    padding: 15px;
    z-index: 99999;
}
.epd-msg-bg{
    padding: 5px;
    border-radius: 2px;
}

#epd-global-menu-dropdown{
    width: 220px;
}
#epd-global-menu:focus-visible,
#epd-global-menu-button:focus-visible{
    outline: none;
}
.epd-app-playlist-controls div.menu_items>.fas{
    font-size: 24px;
    padding: 5px;
    border-radius: 4px;
}
#epd-apps-sound-menu .epd-app-playlist-controls div.menu_items>.fas{
    /*background-color: #ffea05;*/
    background-color: var(--global-menu-dropdown-sound_menu-btn);
}
#epd-app-playlist-aside-footer .epd-app-playlist-controls div.menu_items>.fas{
    background-color: #017bff;
    color: white;
}
.epd-app-playlist-controls .sound_menu_mi_volume_range{
    max-width: 70px;
}
.epd-app-playlist-controls div.menu_items{
    position: relative;
    display: inline-block;
    color: white;
    text-align: center;
    cursor: pointer;
}
.epd-app-playlist-controls div.menu_items:not(:last-child){
    padding: 8px 12px 8px 0;
}
#epd-app-playlist-aside-wrapper{
    position: fixed;
    right: -230px;
    width: 230px;
    height: 100%;
    background: transparent;
    z-index: 99999;
}
#epd-app-playlist-aside{
    background-color: #9fd2f5c7;
    width: 100%;
    border-radius: 8px 0 0 8px;
    padding: 4px;
}
#epd-app-playlist-aside ul,
#epd-app-playlist-tracks{
    /*list-style: none;*/
    position: static;
    display: block;
    list-style-type: none;
    width: 100%;
    padding-inline-start: 0;
    margin-bottom: 4px;
}
/*#epd-app-playlist-aside ul li a,*/
#epd-app-playlist-tracks li{
    position: relative;
    display: list-item;
}
/*a:first-child*/
#epd-app-playlist-tracks li{
    display: inline-block;
    padding: 3px 6px;
    margin: 3px 1px;
    border-radius: 2px;
    width: 100%;
    /* font-weight: 500; */
    text-decoration: none;
    color: var(--playlist-item-text);
    background-color: var(--playlist-item-background);
    border: 1px solid var(--playlist-item-border);
}
#epd-app-playlist-tracks li:hover{
    background-color: var(--playlist-item-background-hover);
}
#epd-app-playlist-tracks li a{
    color: var(--playlist-item-text);
}
#epd-app-playlist-tracks li:hover a,
#epd-app-playlist-tracks li:hover span,
#epd-app-playlist-tracks li:hover i{
    text-decoration: none;
    color: var(--playlist-item-text-hover);
}
/*#epd-app-playlist-tracks li a:nth-child(2){
    position: absolute;
    right: 8px;
    top: 3px;
    padding: 2px 5px;
}*/

li.epd-app-playlist-track .in_progress,
li.epd-app-playlist-track .corrupted,
li.epd-app-playlist-track .empty
{
  color:#007bff;
}

#epd-app-playlist-tracks li a img{
    height: 23px;
    display: none;
}
#epd-app-playlist-tracks li.playing img{
    display: inline-block;
}
#epd-app-playlist-aside ul li.playing,
#epd-app-playlist-tracks li.playing{
    background-color: var(--playlist-item-background-playing);
}
#epd-app-playlist-aside ul li.playing a,
#epd-app-playlist-tracks li.playing a,
#epd-app-playlist-aside ul li.playing i,
#epd-app-playlist-tracks li.playing i,
#epd-app-playlist-tracks li.playing:hover span{
    color: var(--playlist-item-text-playing);
    font-weight: 300;
}
#epd-app-playlist-tracks li.playing a img{
    border-radius: 3px;
}
#epd-app-playlist-aside-close{
    position: absolute;
    font-size: 22px;
}
#epd-app-playlist-header-mobile {
    background-color: var(--app-content-top-background);
    margin-bottom: -9px;
    margin-right: 5px;
    margin-left: 5px;
    padding: 4px 46px 4px 5px;
}
#epd-app-playlist-header-mobile a {
    text-decoration: none;
}
#epd-app-playlist-playlist-name-mobile, .epd-app-playlist-divider-mobile {
    text-align: center;
    font-size: 22px;
}
#epd-app-playlist-playlist-name-mobile > div, .epd-app-playlist-divider-mobile > span {
    display: inline-block;
    background-color: var(--app-content-foldername-background);
    padding: 0 5px;
    border-radius: 4px;
    color: var(--app-content-foldername-text);
}
#epd-app-playlist-tracks-wrapper > div > a{
    color: var(--playlist-btn-background);
}
#epd-footer-placeholder-wrapper{
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--playlist-player-background);
    width: 100%;
    text-align: center;
    height: 160px;
    /* display: none; */
    bottom: 0;
    z-index: 999;
}
#epd-footer-placeholder-wrapper.active{
    display: flex;
}


/*/////////////////////////////////   APP_CLOUD /////////////////////////////////////*/
#epd-app-cloud-files-modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--playlist-add_from_cloud-background);
    margin: auto;
    z-index: 1111;
}

#epd-app-cloud-files-modal-close{
    position: absolute;
    font-size: 26px;
    right: 0;
    z-index: 99999;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 50%;
}
#epd-app-cloud-files-modal div.modal-body{
    position: absolute;
    top: 0;
    bottom: 48px;
    left: 0;
    right: 0;
}
#epd-app-cloud-files-modal div.modal-footer{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
 }
#epd-app-cloud-file-selector-content{
    position: absolute;
    bottom: 0;
    top: 15px;
    left: 15px;
    right: 15px;
    overflow: hidden;
}
#epd-app-cloud-file-selector-list{
    position: absolute;
    list-style: none;
    list-style-image: none;
    margin: 15px 0;
    top: 15px;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    background: var(--playlist-add_from_cloud-content-background);
    border-radius: 5px;
    font-size: 14px;
    color: #024184;
    font-weight: 300;
}
#epd-app-cloud-file-selector-list li.epd-app-cloud-file-selector-file{
    display: flex;
    position: relative;
    cursor: pointer;
    padding: 15px;
    font-size: 12px;
    min-height: 44px;
}
#epd-app-cloud-file-selector-list li.epd-app-cloud-file-selector-file>input{
    margin: 0;
    margin-top: 0;
    min-width: 20px;
    height: 20px;
}
#epd-app-cloud-file-selector-list li .epd-app-cloud-file-selector-file-info-handler{
    font-size: 20px;
    color: var(--playlist-add_from_cloud-content-item-dropdown-btn);
    padding: 2px;
    border-radius: 4px;
}
#epd-app-cloud-file-selector-list li .epd-app-cloud-file-selector-file-info-dropdown{
    width: 98%;
    padding: 15px;
    color: var(--playlist-add_from_cloud-content-item-dropdown-text);
    font-weight: 500;
    background-color: var(--playlist-add_from_cloud-content-item-dropdown-background);
    border-radius: 4px;
    border: 1px solid var(--playlist-add_from_cloud-content-item-dropdown-border);
    margin-top: 10px;
    margin-left: 7px;
    word-break: break-all;
}
#epd-app-playlist-contacts-modal-close {
     position: absolute;
     font-size: 26px;
     z-index: 99999;
     cursor: pointer;
     padding: 4px 10px;
     border-radius: 50%;
 }

.epd-app-cloud-file-selector-file-name{
    color: var(--playlist-add_from_cloud-content-item-dropdown-text) !important;
}
.epd-upload-ph{
    display: inherit;
}
/*///////////////////////////////  NEW MEDIA VIEWS ///////////////////////////*/





/*.marquee {
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 5s linear infinite;
}

.marquee2 span {
    animation-delay: 2.5s;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}*/
@-ms-viewport { width: device-width; }

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

@media (max-width: 649px) and (min-height: 600px) {
    #epd-containers-inner-wrapper{
        width: 331px;
        display: inline-block;
        min-height: 184px;
    }
    .modalMsgBox .modal-body {
        min-height: 300px;
    }
    .epd-user-avatar-in-list{
        margin-top: 20px;
    }
}
@media (min-width: 650px) {
    #epd-containers-inner-wrapper{
        width: 554px;
        display: inline-block;
        min-height: 184px;
    }
    .modal-body #epd-containers-inner-wrapper{
        width: 468px;
        display: inline-block;
        min-height: 184px;
    }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    #auth-buttons{
	top:0;
	left: 42%;
    }
    #content{
	height: inherit;
	display: block;
    }

}
@media (min-width: 992px){
    #content {
        position: relative;
        padding: 0 114px;
    }
    #main-panel-wrapper{
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% 100%;
	height: 520px;
    }
    #landing-page-title{
	/*    padding-top: 56px;
	    margin-bottom: 80px;*/
	text-align: center;
    }
    #epd-recovery-msg{
	background-color: transparent;
	margin: 25px;
	text-align: center;
    }
}

@media only screen and (min-width: 1200px){ /*XL*/
    .epd-contacts-modal{
	max-width: 620px;
    }
    .epd-contacts-modal .modal-body {
	top: 20px;
    }
    #epd-comm-group-friends-list{
	margin: 0 0 15px 0;
    }
}
