/* Overflow Hidden */

.section_header,
.body_container,
.footer,
.module {
    overflow: hidden;
}

/* ===== Spacings ===== */


/* Side Column */

@media (max-width:992px) {
    .side-column {
        margin-top: 30px;
    }
}

@media screen and (min-width: 992px) {
    .side-column:lang(ar) {
        padding: 0 0 0 30px !important;
    }
}


/* Container */

.container:not(.container-sm):not(.container-md):not(.container-basic) {
    padding: 15px;
}

.container-md {
    padding-top: 10px;
    padding-bottom: 10px;
}

.container.inner {
    padding: 30px 15px 30px 15px !important;
}

@media screen and (min-width:1366px) {
    .container {
        width: 1200px;
        max-width: 100%;
    }
}

/* Grid Container 40 */

.grid-container-40 {
    margin: 0 -40px -80px -40px !important;
}

.grid-container-40>.grid-item {
    padding: 0 40px 80px 40px !important;
}

@media screen and (max-width: 992px) {
    .row.single.grid-container-40 {
        padding-bottom: 20px;
    }
    .row.single.grid-container-40>.grid-item {
        padding: 20px 20px 0 20px !important;
    }
}


/* Grid Container 50 */

.grid-container-50 {
    margin: 0 -50px -100px -50px !important;
}

.grid-container-50>.grid-item {
    padding: 0 50px 100px 50px !important;
}

@media screen and (max-width: 992px) {
    .row.single.grid-container-50 {
        padding-bottom: 20px;
    }
    .row.single.grid-container-50>.grid-item {
        padding: 20px 20px 0 20px !important;
    }
}

/* ===== IFrame Title ===== */

div.title {
    padding: 10px;
    font-size: 13px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* ===== Inputs ===== */

input[type=text],
input[type=password],
input[type=number],
input[type=file],
input[type=email],
input[type=date],
input[type=time],
input[type=search],
textarea,
select {
    margin: 0;
    padding: 5px;
    color: black;
    width: 100%;
    border: 1px solid #ccc;
    background: #fefefe;
    min-height: 30px;
    box-shadow: inset -2px 2px 8px rgba(0, 0, 0, .02);
}

select {
    padding: 0 5px 0 5px;
}

textarea {
    min-height: 80px;
}

.fancy_inputs input[type=text],
.fancy_inputs input[type=password],
.fancy_inputs input[type=number],
.fancy_inputs input[type=file],
.fancy_inputs input[type=email],
.fancy_inputs input[type=date],
.fancy_inputs input[type=time],
.fancy_inputs input[type=search],
.fancy_inputs textarea,
.fancy_inputs select {
    margin: 0;
    padding: 5px;
    color: black;
    width: 100%;
    border: 1px solid #ccc;
    background: #fefefe;
    min-height: 40px;
    border-radius: 3px;
    box-shadow: inset -4px 4px 20px rgba(0, 0, 0, .01);
}

.submit_container {
    background: transparent;
    border-radius: 0;
    margin-top: 15px;
    padding: 0;
    border: 0;
}


/* ===== Selecty Overrides ===== */

.selecty .selecty-selected,
.selecty-select {
    text-align: left !important;
}

.selecty .selecty-selected {
    font-size: 13px !important;
    height: auto !important;
}

.selecty .selecty-selected:after {
    left: initial !important;
    right: 0px;
}

.selecty .selecty-options {
    font-size: 13px;
    margin-top: 10px !important;
    max-height: 300px !important;
}

.selecty .selecty-options li {
    text-align: left !important;
    height: auto !important;
    line-height: 1.5 !important;
    padding: 10px !important;
}


/* ====== Files Container ====== */

.file_container {
    border-bottom: 1px solid #c8c8c8;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.file_container h3 {
    margin: 0;
    padding: 0px;
    font-size: 16px;
}

.file_container>div {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.file_container i {
    font-size: 24px;
    margin-right: 10px;
}

.file_container:first-child {
    padding-top: 0px;
}

.file_container:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
}

.file_container .download_button {
    flex-basis: 150px;
}

@media screen and (max-width:768px) {
    .file_container .download_button {
        margin-top: 10px;
        flex-basis: 100%;
    }
}


/* ===== Forget Password Input ===== */

input.code {
    font-size: 30px;
    width: 200px;
    text-align: center;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #c8c8c8;
    box-shadow: inset -2px 2px 6px rgba(0, 0, 0, .05);
}

input.code::-webkit-outer-spin-button,
input.code::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* ===== Filter Toolbar ===== */

.filter_container {
    padding: 10px;
    background: white;
    border-radius: 5px;
    border: 1px solid #eee;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, .05);
}

.filter_horizontal {
    width: calc(100% + 15px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.filter_horizontal>div {
    display: flex;
    align-items: center;
    margin: 0 15px 0 0;
}

.filter_horizontal>div  [type="checkbox"].filled-in+span {
    height: auto;
}

.filter_horizontal>div span.input {
    flex-grow: 1;
    min-width: 200px;
}

.filter_horizontal>div small {
    display: inline-block;
    margin-right: 15px;
    font-size: 12px;
}

@media screen and (max-width:576px){
    .filter_horizontal>div {
        margin: 0 15px 15px 0;
    }

    .filter_horizontal>div:last-child {
        margin: 0;
        width: calc(100% - 15px);
    }

    .filter_horizontal>div:last-child button {
        width: 100%;
    }
}


/* ===== User Dashboard ===== */

.dashboard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    color: #606060;
    border: 1px solid #c8c8c8;
    padding: 10px;
    background: rgb(255,255,255);
    background: linear-gradient(-225deg, rgba(255,255,255,1) 0%, rgba(245,245,245,1) 100%);
    box-shadow: -1px 1px 2px rgba(0, 0, 0, .1);
    height: 100%;
    background-size: 200% 200%;
    background-position: 100% 0%;
    transition: background-position 0.25s, box-shadow 0.25s !important;
}

.dashboard:hover {
    box-shadow: -2px 2px 6px rgba(0, 0, 0, .1);
    background-position: 0% 100%;
    color: #2d983f;
}

.dashboard span {
    display: block;
    color: #4a4a4a;
    font-size: 35px;
    transition: color 0.25s;
    margin-bottom: 10px;
}

/* ===== User Welcome ===== */

.welcome_module {
    margin-bottom: 20px;
}

.welcome_module .date_container {
    background: #fefefe;
    border-radius:5px;
    color:#252525;
    text-align:center;
    font-size:12px;
    display: flex;
    align-items: center;
    padding: 10px;
    height: 100%;
    box-shadow: -2px 2px 8px rgba(0,0,0,.1);
}

.welcome_module .date_container > div {
    line-height: 1;
    text-align: left;
    margin-right: 25px;
}

.welcome_module .date_container div.date {
    font-size:14px;
    margin:10px 0px 0 0px;
}

.welcome_module .date_container div.time {
    font-size:18px;
    margin:10px 0px 0 0px;
}

.welcome_module .user_welcome {
    width:100%;
    border-radius:5px;
    padding:10px;
    position:relative;
    overflow: hidden;
    color:white;
    line-height: 2;
    height: 100%;
    box-shadow: -2px 2px 8px rgba(0,0,0,.1);
}

.welcome_module .user_welcome:before {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -100px;
    left: -50px;
    content: "";
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}

.welcome_module .user_welcome:after {
    position: absolute;
    top: 20px;
    left: -50px;
    width: 200px;
    height: 200px;
    content: "";
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}

.welcome_module .user_welcome b {
    display:block;
    font-size:20px;
}

/* ====== Donation Modal ====== */

.modal_total {
    margin: 5px auto 10px auto;
    width: 200px;
    min-width: 200px;
    max-width: 100%;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #c8c8c8;
    background: #f8f8f8;
    padding: 10px 10px 5px 10px;
}

.modal_total span {
    font-family: tahoma;
    font-weight: bold;
    display: block;
    text-align: center;
    font-size: 26px;
    color: green;
    line-height: 1;
}


/* Spinner */

.spinner_container {
    margin: 0px auto 0px auto;
    width: 200px;
    min-width: 200px;
    max-width: 100%;
}

.spinner_container .btn {
    height: 35px !important;
}

.spinner_container .btn span {
    margin-top: 3px;
}

.spinner_container input {
    height: 35px !important;
    box-shadow: initial;
}


/* Payment Tabs */

.payment-tabs {
    width: calc(100% + 10px);
    border: 0px !important;
    padding: 0px !important;
    margin: 0 0 -5px -5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.payment-tabs li {
    margin: 0 5px 10px 5px;
    border: 1px solid #c8c8c8;
    border-radius: 3px;
    background: #f8f8f8;
    text-align: center;
    transition: all .5s;
    flex-grow: 1;
    flex-basis: 100px;
}

.payment-tabs li a {
    border: 0px !important;
    background: initial !important;
}

.payment-tabs li i {
    display: block !important;
    font-size: 40px !important;
    margin-bottom: 5px !important;
    color: #aaa !important;
}

.payment-tabs li:hover {
    background: #eee;
}

.payment-tabs li.active {
    background: #eee;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, .1);
}

.payment-tabs li.active a i,
.payment-tabs li:hover a i {
    color: #303030 !important;
    transition: all .5s;
}

/* Online Payment Tabs */

.available_methods {
    text-align: center;
}

.available_methods img {
    display: inline-block;
    margin: 5px;
    height: 40px;
}

.online-payment-tabs {
    width: calc(100% + 10px);
    border: 0px !important;
    padding: 0px !important;
    margin: 0 0 0 -5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.online-payment-tabs li {
    margin: 0 5px 10px 5px;
    border: 1px solid #c8c8c8;
    border-radius: 3px;
    background: #fff;
    text-align: center;
    transition: all .5s;
}

.online-payment-tabs li a {
    display: flex;
    align-items: center;
    width: 150px;
    height: 70px;
    border: 0px !important;
    background: initial !important;
}



.online-payment-tabs li:hover {
    background: #f8f8f8;
}

.online-payment-tabs li.active {
    background: #f8f8f8;
    box-shadow: -2px 2px 6px rgba(0, 0, 0, .1);
}

/* ===== Credit Card Input ===== */

.jp-card-container {
    overflow: hidden;
}

.card_form .inputs .input {
    margin-bottom: 15px;
}

.card_form .inputs .input span {
    display: block;
    width: 100%;
    text-align: left;
    direction: ltr;
    line-height: 1;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 10px;
}

.card_form .inputs .input input,
.card_form .inputs .input select {
    font-size: 13px;
    padding: 5px;
    border-radius: 3px;
    height: 35px;
}

/* Governance */

.governance_attachments {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    margin-bottom: -10px;
    list-style-type:none;
    column-gap: 25px;
    break-inside: avoid-column;
    padding: 0;
}

@media screen and (max-width:576px){
    .governance_attachments {
        columns:1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

.governance_attachments > li {
    break-inside: avoid-column;
}

.governance_attachments > li .page_subtitle {
    font-weight: bold;
    margin:0 0 10px 0;
}

.governance_attachments ul {
    margin-bottom: 15px;
    background: #fefefe;
    border-radius: 5px;
    border: 1px solid #aaa;
    padding: 10px 10px 10px 15px;
    list-style-position: inside;
    break-inside: avoid-column;
    box-shadow: -2px 2px 6px -2px rgba(0,0,0,.1);
}

.governance_attachments ul li {
    font-size: 13.5px;
    line-height: 2;
}

.governance_page .page_container > div {
    margin-bottom: 10px;
}

.governance_page .page_container > div:last-child {
    margin-bottom: 0;
}

.governance_page .page_container > div img {
    display: block;
    margin: 0 auto 0 auto;
}

.governance_page .page_container > div iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

/* Modules */

.module {
    padding: 15px 0 15px 0;
}

.module .module_description {
    text-align: center;
    margin: 0 0 25px 0;
}

.module .module_description h1 {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
}

.module .module_description h3 {
    text-align: center;
    margin: 10px auto 10px auto;
    font-size: 14px;
    max-width: 800px;
}

.module .module_buttons {
    text-align: center;
    margin: 25px -10px -10px -10px;
    width: calc(100% + 20px);
}

.module .module_buttons a {
    margin: 0 10px 10px 10px;
    min-width: 120px;
    padding: 10px;
    font-size: 13px;
    box-shadow: -1px 1px 6px rgba(0,0,0,.1);
    transition: all 0.25s;
}

.module .module_buttons a:hover {
    box-shadow: -1px 1px 8px rgba(0,0,0,.25);
}

.module .module_content {
    position: relative;
}

.module .module_content_block {
    height: 100%;
}

/* Two columns compensation */

.module:not(.module_custom) .row.grid-container-20 {
    padding-top: 0 !important;
}

.module:not(.module_custom) .grid-container-20>.grid-item:first-child {
    padding-bottom: 20px !important;
}


/* Inline Modules */

.inline_module .module_description {
    text-align: left;
    margin: 0 0 20px 0;
}

.inline_module .module_description h1 {
    text-align: left;
    font-weight: bold;
    font-size: 18px;
}

.inline_module .module_content {
    position: relative;
}

.inline_module .more_buttons {
    width:100%;
    text-align:right;
    margin-top:10px;
}

.inline_module .more_buttons:not(.no_padding) {
    padding-right:25px;
}








/* Form Table */

table.form_table {
    width: calc(100% + 10px);
    margin: 0 -5px 0 -5px;
    border-collapse: collapse;
}

table.form_table td {
    padding: 5px;
    width: 50%;
    vertical-align: top;

}

table.form_table td div.input_title {
    margin-bottom: 5px;
    height: 20px;

}

table.form_table td div.input {
    height: 100%;
    position: relative;
    display: flex;
}


.form_table td div.input .radio_container {
    display:flex;
    min-height:40px;
    align-items:center;
    margin-top:0;
}


table.form_table td div.input .date_field {
    background-image: initial !important;
}

table.form_table td div.input .select2-selection {
    min-height: 40px;
    display: flex;
    align-items: center;
}


table.form_table td div.input[data-icon] > *:first-child,
table.form_table td div.input[data-icon] .select2-selection {
    padding-left: 35px;
}


table.form_table td div.input[data-icon] .radio_container {
    padding-left: 45px;
}

table.form_table td div.input[data-icon]:after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 200;
    content: attr(data-icon);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
}

table.form_table input[type=text],
table.form_table input[type=password],
table.form_table input[type=number],
table.form_table input[type=file],
table.form_table input[type=email],
table.form_table input[type=date],
table.form_table input[type=time],
table.form_table input[type=search],
table.form_table textarea,
table.form_table select,
table.form_table input.form-control,
table.form_table .tag-box-block li .input-tag {
    min-height: 40px;
}

@media screen and (max-width:600px) {
    table.form_table {
        width: calc(100% + 20px);
        margin: 0 -5px 0 -5px;
    }

    table.form_table>tbody>tr>td {
        display: block;
        width: calc(100% - 10px);
    }
}




/* Default Tansparent Button */

.btn-default-transparent {
    background: transparent !important;
    border: 1px solid #fff !important;
    color: #fff !important;
}

fieldset[disabled] .btn-default-transparent:hover,
fieldset[disabled] .btn-default-transparent:focus,
fieldset[disabled] .btn-default-transparent.focus,
.btn-default-transparent:hover,
.open>.dropdown-toggle.btn-default-transparent,
.btn-default-transparent:active,
.btn-default-transparent.active,
.btn-default-transparent.disabled:hover,
.btn-default-transparent[disabled]:hover,
.btn-default-transparent.disabled:focus,
.btn-default-transparent[disabled]:focus,
.btn-default-transparent.disabled.focus,
.btn-default-transparent[disabled].focus,
.btn-default-transparent:focus,
.btn-default-transparent.focus,
.btn-default-transparent:active,
.btn-default-transparent.active,
.btn-default-transparent:active:hover,
.btn-default-transparent.active:hover,
.open>.dropdown-toggle.btn-default-transparent:hover,
.btn-default-transparent:active:focus,
.btn-default-transparent.active:focus,
.open>.dropdown-toggle.btn-default-transparent:focus,
.btn-default-transparent:active.focus,
.btn-default-transparent.active.focus,
.open>.dropdown-toggle.btn-default-transparent.focus {
    background: #ffffff10 !important;
}

/* Black Large Button (Apple Pay) */

.btn-black-large {
    background: #000 !important;
    border: 1px solid #000 !important;
    color: #fff !important;
    font-size: 14px;
}

fieldset[disabled] .btn-black-large:hover,
fieldset[disabled] .btn-black-large:focus,
fieldset[disabled] .btn-black-large.focus,
.btn-black-large:hover,
.open>.dropdown-toggle.btn-black-large,
.btn-black-large:active,
.btn-black-large.active,
.btn-black-large.disabled:hover,
.btn-black-large[disabled]:hover,
.btn-black-large.disabled:focus,
.btn-black-large[disabled]:focus,
.btn-black-large.disabled.focus,
.btn-black-large[disabled].focus,
.btn-black-large:focus,
.btn-black-large.focus,
.btn-black-large:active,
.btn-black-large.active,
.btn-black-large:active:hover,
.btn-black-large.active:hover,
.open>.dropdown-toggle.btn-black-large:hover,
.btn-black-large:active:focus,
.btn-black-large.active:focus,
.open>.dropdown-toggle.btn-black-large:focus,
.btn-black-large:active.focus,
.btn-black-large.active.focus,
.open>.dropdown-toggle.btn-black-large.focus {
    background: #202020 !important;
}

/* Checkout Mobile Input */

.mobile_input {
    display: inline-block;
    position: relative;
}

.mobile_input input {
    direction: rtl;
    font-size: 24px;
    max-width: 300px;
    margin: 0 auto 0 auto !important;
    padding: 5px 90px 5px 5px !important;
    border-radius: 100px;
    text-align: right;
}

.mobile_input span {
    font-size: 30px;
    color: #808080;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    z-index: 10;
}

.mobile_input i {
    font-size: 30px;
    color: #ccc;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    z-index: 10;
}

/* Checkout Cart */

.checkout_cart {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: -2px 2px 10px -2px rgba(0,0,0,.1);
}

.checkout_cart .checkout_title {
    color: white;
    padding: 15px;
    line-height: 1;
}

.checkout_cart .checkout_title small {
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.checkout_cart .checkout_title b {
    font-size: 40px;
}

.checkout_cart .checkout_rows {
    padding: 10px 0 10px 0;
}

.checkout_cart .checkout_rows > div {
    padding: 5px 10px 5px 10px;
    display: flex;
    align-items: center;
}

.checkout_cart .checkout_rows > div a {
    color: red;
    margin-right: 10px;
}

.checkout_cart .checkout_rows > div span {
    flex-grow: 1;
    font-size: 13px;
}

.checkout_cart .checkout_rows > div b {
    font-size: 14px;
}

/* Checkout Mobile */

.checkout_mobile {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: -2px 2px 10px -2px rgba(0,0,0,.1);
    text-align: center;
    line-height: 1;
    padding: 15px;
}

.checkout_mobile b {
    display: block;
    font-size: 16px;
    margin: 10px 0 10px 0;
}

/* Checkout Gift */

.checkout_gift {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: -2px 2px 10px -2px rgba(0,0,0,.1);
    padding: 15px;
    position: relative;
}

.checkout_gift .check {
    display: flex;
    align-items: center;
}

.checkout_gift .check .check_container {
    flex-grow: 1;
}

.checkout_gift .check i {
    font-size: 30px;
    color: #aaa;
}

.checkout_gift .gift_input {
    position: relative;
    z-index: 10;
}

.checkout_gift .gift_input input {
    border-radius: 3px;
}





/* Footer Copyrights */

.copyrights {
    position: relative;
}

.copyrights:after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.25);
    pointer-events: none;
}

.copyrights,
.copyrights a {
    color: #fff !important;
}

.copyrights .container {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.copyrights .container > div {
    flex-grow: 1;
}

@media screen and (max-width:576px){
    .copyrights .container {
        align-items: center;
        justify-content: center;
    }
    .copyrights .container {
        line-height: 2;
    }
}

/* Inline Form */

.inline_form {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 10px);
    margin: -5px;
}

.inline_form > div {
    display: flex;
    align-items: center;
    flex-basis: 20%;
    min-width: 200px;
    flex-grow: 1;
    margin: 5px;
}

.inline_form > div span {
    flex-basis: 90px;
}

.inline_form > div .input {
    flex-grow: 1;
}

/* Cart Modal Content */

.cart_modal_content {
    text-align:center;
    background:white;
    font-size:12px;
}

.cart_modal_content .cart_row {
    text-align:left;
    padding:10px 0px 10px 0px;
    border-top:1px dotted #c8c8c8;
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

.cart_modal_content .cart_row:first-child {
    border-top:0px;
    padding-top:0px;
}

.cart_modal_content .cart_row .btn {
    margin-right:5px;
}

.cart_modal_content .cart_row .btn i {
    color: white;
}

.cart_modal_content .cart_row .title {
    flex-grow:1;
}

.cart_modal_content .cart_row .price {
    font-weight:bold;
    text-align:right;
    white-space:nowrap;
    margin-left:5px;
}

.cart_modal_content .cart_total {
    text-align:center !important;
    background:#f8f8f8;
    border:1px solid #ddd;
    border-radius:3px;
    padding:5px 5px 10px 5px;
}

.cart_modal_content .cart_total small {
    color:#909090;
}

.cart_modal_content .cart_total b {
    display:block;
    margin-top:2px;
    font-size:16px;
}


/* Fixed Footer Divisions */

.index_anchor {
    position: fixed;
    z-index: 900;
    display: flex;
}

.index_anchor.right {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.index_anchor.left {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.index_anchor.bottom-right {
    right: 50%;
    left: 0;
    bottom: 0;
}

.index_anchor.bottom-left {
    right: 0;
    left: 50%;
    justify-content: flex-end;
    bottom: 0;
}


/* Program Schedule Events */

.events_panel .panel.panel-default {
    border-color: #ccc;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: initial;
    box-shadow: -1px 1px 6px rgba(0,0,0,.05);
}

.events_panel .panel.panel-default:last-child {
    margin-bottom: 0;
}

.events_panel .panel.panel-default > .panel-heading {
    border: 0;
    padding: 0;
}

.events_panel .panel.panel-default > .panel-heading a {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #eee;
    cursor: pointer;
}

.events_panel .panel.panel-default > .panel-heading a span {
    flex-grow: 1;
}

.events_panel .panel.panel-default > .panel-heading a i.fa-chevron-down {
    font-size: 20px;
    transform: rotate(-180deg);
    transition: transform 0.25s;
    color: #808080;
}

.events_panel .panel.panel-default > .panel-heading a.collapsed i.fa-chevron-down {
    transform: rotate(0);
    color: #aaa;
}

.events_panel .panel.panel-default > .panel-heading a.collapsed {
    background: #fefefe;
}

.events_panel .panel.panel-default > .panel-heading+.panel-collapse > .panel-body {
    border-color: #ccc;
}

.events_panel .event_header .event_title b {
    display: inline-block;
    font-size: 13px;
    margin-right: 10px;
}

.events_panel .event_header .data_list {
    margin-top: 10px;
}

.events_panel .event_header .label {
    padding: 5px 10px 5px 10px;
    font-size: 11px;
}

.events_panel .panel-heading.status2 {
    pointer-events: none;
}

.events_panel .panel.panel-default > .panel-heading.status2 a i.fa-chevron-down {
    display: none;
}

.gift_template_thumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.gift_template_thumbs label {
    width: 100px;
}

.gift_template_thumbs [type=radio] + img {
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 3px;
}

.pdf_render {
    border: 1px solid #e5e5e5;width:100%;height:500px;border-radius:3px;
}
