/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.reminder-heading {
    text-align: center;
}
.reminder-heading h4 {
    font-weight: bolder;
    font-size: 20px;
    color: #000000;
    margin: auto;
}
.heading-txt-icon {
    display: inline-flex;
    align-items: center;
}
.heading-txt-icon img {
    width: 55px;
    margin-right: 5px;
}
.reminder-heading p {
    margin-bottom: 0px;
    font-weight: bolder;
    font-size: 18px;
    color: #8e8e8e;
}
.reminder-heading ul li {
    list-style-position: inside !important;
    margin: 0px !important;
    color: #919191;
}
.reminder-heading ul li::marker {
    margin-right: 5px;
}
.reminder-heading a.set-reminder {
    background: #31c8b7;
    padding: 10px 20px;
    color: #ffff;
    font-weight: 600;
    text-decoration: none !important;
}
.popup-link a {
    background: #333;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 17px;
    cursor: pointer;
    margin: 20px;
    text-decoration: none;
}
.popup-container {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 17, 17, 0.61);
    display: flex;
    align-items: center;
}
.popup-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    overflow-y: scroll;
    height: 100%;
    width: 30%;
}
.wpuf-fields select {
    width: 100% !important;
}
.popup-content p {
    font-size: 17px;
    padding: 10px;
    line-height: 20px;
}
.popup-content a.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    background: none;
    padding: 0;
    margin: 0;
    text-decoration: none;
}
.popup-content a.close:hover {
    color: #333;
}
.popup-content span:hover, .popup-content span:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.popup-container:target {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.popup-container h3 {
    margin: 10px;
}
body ul.wpuf-form li {
    margin-bottom: 0px !important;
    padding: 0px !important;
}

/* Reminder form css */

.wpuf-fields select {
    width: 100%;
}
.wpuf-fields {
    width: 100% !important;
}
form.wpuf-form-add.wpuf-form-layout1.wpuf-style {
    width: 350px;
    margin: auto;
}
.wpuf-fields input {
    width: 100% !important;
    padding: 5px !important;
}

/* Reminder card css */

.reminder-page-content {
    padding: 0px 25px;
}
.upcoming-events {
    display: grid;
}
.reminder-list {
    display: flex;
    justify-content: space-between;
}
.card {
    background: #fff;
    /* box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.5); */
    width: 48%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 10px;
    border: 1px solid #8e8e8e;
    margin-bottom: 10px;
}
.card h2 {
    margin: 0;
    padding: 0 1rem;
}
.card .title {
    padding: 1rem;
    text-align: right;
    color: green;
    font-weight: bold;
    font-size: 12px;
}
.card .desc {
    padding: 0.5rem 1rem;
    font-size: 12px;
}
.card .actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    padding: 0.5rem 1rem;
}
.card svg {
    width: 85px;
    height: 85px;
    margin: 0 auto;
}
.card-text {
    display: grid;
    grid-template-columns: .6fr 2fr;
}
.card-text img {
    width: 80px;
    height: 80px;
    margin-top: 15px;
}
.title-total {
    /* padding: 2.5em 1.5em 1.5em 1.5em; */
    padding-left: 5px;
}
.title-total h3 {
    margin: 5px 0px;
}

/* button {
    border: none;
    background: none;
    font-size: 24px;
    color: #8bc34a;
    cursor: pointer;
    transition: 0.5s;
}
button:hover {
    color: #4CAF50;
    transform: rotate(22deg);
} */

.card .menu {
    width: 100%;
    /* height: 5.5rem; */
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box;
}
.card .menu .opener {
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
    border-radius: 50%;
    transition: background-color 100ms ease-in-out;
}
.card .menu .opener:hover {
    /* background-color: #f2f2f2; */
}
.card .menu .opener span {
    background-color: #404040;
    width: 0.4rem;
    height: 0.4rem;
    position: absolute;
    top: 0;
    /* left: calc(50% - 0.2rem); */
    border-radius: 50%;
    right: 0px;
    cursor: pointer;
}
.card .menu .opener span:nth-child(1) {
    top: 0.45rem;
}
.card .menu .opener span:nth-child(2) {
    top: 1.05rem;
}
.card .menu .opener span:nth-child(3) {
    top: 1.65rem;
}
.menu a {
    color: #31c8b7;
    font-size: 20px;
    text-decoration: none !important;
}
.reminder-actions {
    display: block;
    width: 110px;
    text-align: left;
    border: 1px solid #8e8e8e;
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: 700;
    position: absolute;
    right: 15px;
    top: 0px;
    background: #fff;
    z-index: 1;
}
.reminder-actions.hide {
    display: none;
}
.reminder-actions a {
    width: 100%;
    display: block;
    text-decoration: none !important;
    font-size: 20px;
    color: #31c8b7;
    outline: none !important;
}

/* .confirmation-modal.modal.fade.show {
    top: 0px;
    width: 250px;
    position: absolute;
    background: red;
    z-index: 9999;
} */


/* .confirmation-modal.modal.fade.show {
    width: 250px;
    background: red;
    z-index: 9999;
    margin: auto;
    position: relative;
    margin-top: -50%;
} */

.confirmation-modal.modal {
    background: #ffffffcf;
    /* background: red; */
    z-index: 9999;
    margin: auto;
    top: 0px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}
.modal-dialog {
    width: 300px;
    background: #fff;
    margin: auto;
    margin-top: 20%;
    padding: 25px;
    border: 1px solid #8e8e8e;
    text-align: center;
}
.modal-header button.close {
    display: none;
}
.modal-body {
    margin-bottom: 15px;
}
.modal-footer button {
    display: block;
    width: 200px;
    margin: auto;
    font-size: 24px;
    font-weight: bolder;
    outline: none !important;
    padding: 10px 0px;
    border: none;
}
button.confirm.btn.btn-primary {
    background: #31c8b7;
    color: #fff;
    margin-bottom: 10px;
}
button.cancel.btn.btn-default {
    background: #fff;
    border: 1px solid #31c8b7;
    color: #31c8b7;
}

/* Ambassador Reminders Form - Privacy Policy */

.wpuf-form .custom_html .wpuf-fields {
    font-size: 11px;
    line-height: 1.6em;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Ambassador Reminders Form - Button */

.wpuf-form .wpuf-submit .wpuf-submit-button {
    background-color: #da9089 !important;
    text-shadow: none !important;
    border-style: none !important;
    box-shadow: -50px -50px 0px -50px #006799 !important;
}
ul.wpuf-form li.wpuf-el {
    margin-bottom: 10px !important;
}
ul.wpuf-form li.wpuf-el .wpuf-fields select {
    height: 35px !important;
}
ul.wpuf-form li.wpuf-el .wpuf-label {
    margin-bottom: 0px !important;
}
ul.wpuf-form li.wpuf-el .wpuf-fields select.phc-interest {
    height: 100px !important;
}