.email-modal .modal-body {
    width: 100%;
}

.email-modal .modal-header {
    display: flex;
    position: relative;
}

.email-modal h5 {
    font-weight: bold;
}

.email-modal .modal-header .close {
    margin-top: 0;
    position: absolute;
    right: 20px;
    color: #000;
    opacity: 1;

}

.email-modal .modal-body .container {
    width: 100%;
}

.email-modal .modal-body .form-control {
    height: 40px;
    font-size: 12px;
}

.red-color {
    color: #dd4254;
}

.select-icon select {
    appearance: none;
}

.select-icon i {

    position: absolute;
    right: 24px;
    top: 36px;
    font-size: 18px;
    font-weight: bold;
    pointer-events: none;
}

.email-tags {
    position: relative;
}

.email-tags-wrapper {
    /* position: absolute;
    top: 22%;
    left: 4%; */
    display: flex;
    width: 100%;
    height: 34px;
    padding: 2px 0px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.email-tags-wrapper input {
    border: none;
    flex-grow: 1;
}

.email-tags-wrapper input[disabled], .email-tags-wrapper input[readonly] {
    cursor: not-allowed;
    background-color: #eee;
    opacity: 1;
}

.email-tags-wrapper input.invalid {
    border-color: #dd4254;
}

.tags {
    padding: 2px 4px;
    border-radius: 20px;
    border: 1px solid #868E96;
    display: flex;
    align-items: center;
    color: #868E96;
    font-size: 12px;
    margin-left: 2px;
    justify-content: space-between;
}

/* .tags .tag {
    text-overflow: ellipsis;
    width: 15ch;
    overflow: hidden;
    white-space: nowrap;
} */

.tag-close {
    padding: 0 2px;
    font-size: 16px;
    cursor: pointer;
    color: #000;
}

.tags-gap {
    margin-bottom: 4px;
}

.mail-tooltip {
    position: relative;
    display: inline-block;
}

.mail-tooltip .mail-tooltiptext {
    visibility: hidden;
    background-color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;

}

.mail-tooltip:hover .mail-tooltiptext {
    visibility: visible;
    top: 100%;
    left: 60%;
    /* margin-left: -40px; */
}

.mail-tooltip  .remaining-count {
    display: inline-block;
    width: 25px;
    margin: 6px 10px
}


