html, body {
    height: unset;
    font-family: Helvetica, Arial, sans-serif;
}

.store-container {
    padding: 50px 5%;
    padding-top: 0;
}

.section-heading {
    color: #01338d;
    font-weight: bold;
    margin-bottom: 0.5em;
    font-size: 2em;
    display: grid;
}

.pending-approval-tag {
    font-weight: bold;
    background: red;
    color: white;
    padding: 4px 20px;
    border-radius: 4px;
}

.item-image-container {
    padding: 5%;
}

.action-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.project_by {
    position: relative;
}

.project_by div {
    margin-bottom: 0.5em;
}

.media-container {
    margin: 0 auto;
    width: 100%;
}

.main-media-container {
    text-align: center;
    position: relative;
    padding-top: 56.25%;
}

.additional-media-container {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 10px;
    grid-auto-columns: 110px;
    width: 100%;
    overflow-x: auto;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

.additional-media-container::-webkit-scrollbar {
    display: none;
}

.additional-media-slider-container {
    max-width: 1200px;
    display: grid;
    grid-auto-flow: column;
    grid-gap: 20px;
    margin: auto;
}

.main-media-container > img, .main-media-container > iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
}

.additional-media-original-image {
    max-width: 100%;
    margin-top: 50%;
}

.store-item-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.3);
    transition: 0.3s;
    align-items: center;
    padding: 0 2%;
}

.store-item-card:hover, .store-item-card-without-image:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3);
}

.store-item-card div {
    margin-bottom: 1em;
}

.store-item-card-without-image {
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.3);
    transition: 0.3s;
    align-items: center;
    padding: 0 2%;
}

.store-item-card-without-image .add-to-cart-button {
}

.store-item-card-without-image div div {
    margin-bottom: 1em;
}

.item-image-container img {
    width: 90%;
}

.item-details-container {
    padding: 1em;
    position: relative;
    height: 90%;
    font-size: 14px;
}

.item-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 40px;
    max-height: 40px;
    grid-column-start: 1;
    grid-column-end: 3;
    padding: 0 1.5em 0 1.2em;
    margin-bottom: 0!important;
    font-size: 14px;
}

.item-price {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
}

.dropdown-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 14px;
}

.dropdown-selector select {
    max-width: 68px;
}

.item-price span {
    font-size: 1.5em;
    font-weight: bold;
    color: #01338d;
    padding-left: 8px;
    letter-spacing: 1px;
}

.item-price label {
    margin: auto 0;
}

.note-input-text {
    padding: 8px;
    margin-left: 15px;
    width: 95%;
}
.add-to-cart-button {
    background: #01338d;
    color: white;
    font-weight: bold;
    height: 42px;
    width: 150px;
    padding: 8px;
    border-radius: 8px;
    border: solid 1px #01338d;
}

.dropdown-container {
    /* height: 150px; */
    max-height: 150px;
}

.add-to-cart-container {
    /* position: absolute; */
    bottom: 3%;
    left: 10%;
    text-align: center;
    font-size: 14px;
}

.highlight-additional {
    border: 3px solid #01338d;
}

.cart-button {
    text-align: left;
    position: relative;
    border: 0;
    outline: none;
    cursor: pointer;
    color: #fff;
    transition: .3s ease-in-out;
    overflow: hidden;
}
.cart-button:hover {
    background-color: #346528;
}
.cart-button:active {
    transform: scale(.9);
}

.cart-button .fa-shopping-cart {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: -10%;
    font-size: 1.5em;
    transform: translate(-50%,-50%);
}
.cart-button .fa-box {
    position: absolute;
    z-index: 3;
    top: -20%;
    left: 52%;
    font-size: 1.2em;
    transform: translate(-50%,-50%);
    width: 15px;
    height: 10px;
    background: white;

}
.cart-button span {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    font-size: 1em;
    color: #fff;
    transform: translate(-50%,-50%);
    width: fit-content;
}
.cart-button span.add-to-cart {
    opacity: 1;
}
.cart-button span.added {
    opacity: 0;
}

.cart-button.clicked .fa-shopping-cart {
    animation: cart 1.5s ease-in-out forwards;
}
.cart-button.clicked .fa-box {
    animation: box 1.5s ease-in-out forwards;
}
.cart-button.clicked span.add-to-cart {
    animation: txt1 1.5s ease-in-out forwards;
}
.cart-button.clicked span.added {
    animation: txt2 1.5s ease-in-out forwards;
}
@keyframes cart {
    0% {
        left: -10%;
    }
    40%, 60% {
        left: 50%;
    }
    100% {
        left: 110%;
    }
}
@keyframes box {
    0%, 40% {
        top: -20%;
    }
    60% {
        top: 40%;
        left: 52%;
    }
    100% {
        top: 40%;
        left: 112%;
    }
}
@keyframes txt1 {
    0% {
        opacity: 1;
    }
    20%, 100% {
        opacity: 0;
    }
}
@keyframes txt2 {
    0%, 80% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.empty-placeholder-container {
    height: 40px;
}

.item-title {
    font-size: 16px;
    margin-bottom: 0.5em!important;
    color: #01338d;
    font-weight: bold;
    text-transform: capitalize;
    cursor: pointer;
    grid-column-start: 1;
    grid-column-end: 3;
    padding: 1em 1em 0 1em;
    /* text-align: center; */
}

.item-title:hover {
    text-decoration: underline;
}

.section-header {
    font-weight: bold;
    font-size: 1.3em;
    margin: 2em 0 1em 0;
}

.section-content {
    line-height: 2em;
    padding: 2em 0;
}

.section-content > a {
    color: #01338d!important;
}

.cart-counter {
    position: absolute;
    height: 24px;
    width: 24px;
    background: red;
    font-weight: bold;
    color: white;
    text-align: center;
    border-radius: 55%;
    top: -12px;
    right: -14px;
    cursor: pointer;
}

.share-container {
    font-size: 0.4em;
    color: #f8faff;
    cursor: pointer;
}

.donation-field {
    display: grid; 
    grid-gap: 8px;
    padding: 2em;
}

.donation-field input {
    padding: 8px;
    border-radius: 8px;
    border: solid 1px #666666;
}

.donation-action-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1em;
}

.donation-action-container button {
    width: 100%;
    text-align: center;
}

.donation-container {
    display: grid;
    grid-template-rows: 1fr 2fr;
}

.close-date-container {
    display: grid;
}

.top-sticky-bar {
    display: grid;
    grid-template-columns: 3fr 1fr;
    background: white;

    top: 75px;
	padding: 90px 5% 0 5%;
    /* box-shadow: 0 4px 8px 0 rgb(0 0 0 / 30%); */
    transition: 0.3s;
    z-index: 1029;
}

.make-donation {
    display: grid;
    text-align: center;
    height: fit-content;
    width: fit-content;
    margin: auto;
    background: white;
    margin-top: 12%;
}

.make-donation > div > .add-to-cart-button {
    padding: 0 14px;
    font-size: 0.8em;
    height: 42px;
    font-weight: bold;
    margin-top: 2px;
    padding: 8px;
    border-radius: 8px;
    border: solid 1px #01338d;
}

.make-donation .dlabel {
    background: #01338d;
    color: white;
    padding: 10px;
    margin: 0;
    position: relative;
}

.donation-popup-close {
    position: absolute;
    right: 14px;
    font-weight: bold;
    cursor: pointer;
}

.media-with-profile-container {
    display: grid;
    margin-bottom: 2em;
    grid-gap: 3em;
}

.creator-image {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    bottom: -36px;
}

.out_of_stock {
    color: red;
    font-weight: bold;
}

.slider-arrow {
    font-size: 4em;
    cursor: pointer;
    margin: auto;
}

.dim-slider {
    color: #ccc;
    cursor: default;
}

#additional-media-image-container {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000000b8;
    z-index: 2032;
    text-align: center;
    padding-top: 15%;
    overflow-y: auto;
}

.close-crosshair {
    color: white;
    font-size: 3em;
    font-weight: bold;
    position: absolute;
    top: 1%;
    right: 6%;
    cursor: pointer;
}

#owner-card {
    width: 100%;
    padding-right: 0;
}

.description-container {
    padding: 0;
}

#store-owner-title {
    text-align: center;
    color: white;
    display: block;
    font-weight: bold;
    background: #01338d;
    padding: 6px;
    margin: 0;
}

.header-container:before, .header-container:after {
    content: none;
}

.header-container .navbar-header{
    display: inline-block;
}

.store-items {
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    grid-gap: 30px;
    display: grid;
    justify-content: center;
}

.store-items-preview {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    grid-gap: 30px;
    display: grid;
    justify-content: center;
}

.closed-store {
    font-size: 2em;
    color: red;
    font-weight: bold;
}

#store_container a, #store-item-container a, #cart-container a, .page-container a {
    color: #01338d!important;
}

#store-item-container {
    display: grid;
    margin-top: 100px;
    padding: 0 20px;
}

.roll-over-zoom-in {
    display: none;
}

.details_conainer > div {
    padding: 1em 0;
}

.details_conainer > table {
    border-collapse: separate;
    border-spacing: 0 1em;
}

.item-price-container {
    padding: 0!important;
}

.item-name-container {
    padding: 0!important;
    font-size: 1.5em;
    color: #5c5c5c;
    font-weight: bold;
    text-transform: capitalize;
}

.product-by {
    color: #666666;
    font-size: 0.9em;
}

.store-dropdown {
    width: 100%;
    padding: 10px;
}

.coninue-shopping-btn {
    height: 42px;
    background: none;
    border: 1px solid #a2a2a2;
    margin-left: 1em;
    width: 200px;
    border-radius: 10px;
}

.donation-popup {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #00000066;
    z-index: 9999;
}

.item-media-container {
    display: grid;
    grid-template-columns: 1fr 6fr;
    grid-gap: 1em;
    margin-bottom: 1em;
}

.original-media-container {
    border: 1px solid #ccc;
    margin-right: 2em;
    position: relative;
    overflow: hidden;
}

.popover {
    max-width: 100%;
}

#donation-validation, .donation-validation, .donation-amount-validation {
    color: red;
    text-align: left;
    font-size: 1.2em;
    margin: 0 16px;
}

@media screen and (min-width: 768px) {
	.top-sticky-bar {
	    display: grid;
	    grid-template-columns: 3fr 1fr;
	    background: white;
	
	    top: 75px;
	    padding: 90px 5% 0 5%;
	    /* box-shadow: 0 4px 8px 0 rgb(0 0 0 / 30%); */
	    transition: 0.3s;
	    z-index: 1029;
	}

	.share-container {
	    font-size: 0.4em;
	    color: #f8faff;
	    margin-left: 1em;
	}
	
	.donation-field {
	    display: grid; 
        padding: 2em;
        grid-gap: 1em;
	}
	
	.section-heading {
	    color: #01338d;
	    font-weight: bold;
	    margin-bottom: 0.5em;
	    font-size: 2em;
        display: block;
	}

    .close-date-container {
        display: block;
    }
	
	.make-donation > div > .add-to-cart-button {
	    padding: 0 14px;
	    font-size: 1em;
	    font-weight: bold;
        margin-top: 0;
        height: 42px;
	}
	
	.media-with-profile-container {
	    display: grid;
	    grid-template-columns: 2fr 1fr;
	}
	
	#owner-card {
	    /* position: absolute;
	    top: 50%;
	    left: 50%;
	    transform: translate(-50%,-50%);
	    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.3); */
        padding-right: 0;
	}
	
	.main-media-container > img, .main-media-container > iframe {
	    /* height: 400px; */
	}

    .main-media-container > iframe {
        width: 100%;
    }
	
	.close-crosshair {
	    color: white;
	    font-size: 5em;
	    font-weight: bold;
	    position: absolute;
	    top: 1%;
	    right: 6%;
	    cursor: pointer;
	}

	.store-items {
	    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	    grid-gap: 30px;
	    display: grid;
        justify-content: center;
	}

    .item-image-container {
        position: relative;
        padding: 5%;
    }

    .item-image-container img {
        width: 90%;
	    position: absolute;
	    top: 0;
	    bottom: 0;
	    margin: auto;
    }

	.add-to-cart-container {
    /* position: absolute; */
	    bottom: 3%;
	    left: 15%;
	}
	
	.add-to-cart-button {
	    background: #01338d;
	    color: white;
	    padding: 4px 16px;
	    font-weight: bold;
	    border: none;
	    height: 42px;
	}

	.dropdown-selector {
	    display: grid;
	    grid-template-columns: 1fr 1fr;
	    grid-gap: 2px;
	}

    .dropdown-selector select {
        max-width: 100%;
    }

    #additional-media-image-container {
        padding-top: 3%;
    }

	.additional-media-original-image {
	    max-width: 100%;
	    margin-top: 0;
	}

	#store-item-container {
	    display: grid;
	    grid-template-columns: 1fr 1fr;
	    margin-top: 100px;
	    padding: 0 75px;
	}

	.roll-over-zoom-in {
	    text-align: center;
	    color: gray;
	    margin: 1em;
	    font-weight: bold;
	}

	.item-media-container {
	    display: grid;
	    grid-template-columns: 1fr 6fr;
	    grid-gap: 2em;
	}

}

@media screen and (min-width: 1200px) {
	.top-sticky-bar {
	    display: grid;
	    grid-template-columns: 3fr 1fr;
	    background: white;
	
	    top: 75px;
	    padding: 90px 5% 0 5%;
	    /* box-shadow: 0 4px 8px 0 rgb(0 0 0 / 30%); */
	    transition: 0.3s;
	    z-index: 1029;
	}

	.share-container {
	    font-size: 0.4em;
	    color: #f8faff;
	    margin-left: 1em;
	}
	
	.donation-field {
	    display: grid; 
        padding: 2em;
        grid-gap: 1em;
	}
	
    .donation-field input {
        width: 100%;
        padding-left: 10px;
    }
	
	.section-heading {
	    color: #01338d;
	    font-weight: bold;
	    margin-bottom: 0.5em;
	    font-size: 2em;
        display: block;
	}

    .close-date-container {
        display: block;
    }
	
	.make-donation > div > .add-to-cart-button {
	    padding: 0 14px;
	    font-size: 1em;
	    height: 100%;
	    font-weight: bold;
        margin-top: 0;
        height: 42px;
	}
	
	.media-with-profile-container {
	    display: grid;
	    grid-template-columns: 2fr 1fr;
	}
	
	#owner-card {
	    width: 100%;
        padding-right: 0;
	}
	
	.main-media-container > img {
	    /* height: 400px; */
	}
	
	.close-crosshair {
	    color: white;
	    font-size: 5em;
	    font-weight: bold;
	    position: absolute;
	    top: 1%;
	    right: 6%;
	    cursor: pointer;
	}

	.store-items {
	    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
	    grid-gap: 50px;
	    display: grid;
        justify-content: center;
	}

    .item-image-container {
        position: relative;
        padding: 5%;
    }

    .item-image-container img {
        width: 90%;
	    position: absolute;
	    top: 0;
	    bottom: 0;
	    margin: auto;
    }

	.add-to-cart-container {
    /* position: absolute; */
	    bottom: 3%;
	    left: 25%;
	}
	
	.add-to-cart-button {
	    background: #01338d;
	    color: white;
	    padding: 4px 16px;
	    font-weight: bold;
	    border: none;
	    height: 42px;
	}

	.dropdown-selector {
	    display: grid;
	    grid-template-columns: 1fr 1fr;
	}

    .dropdown-selector select {
        max-width: 100%;
    }

	.additional-media-original-image {
	    max-width: 100%;
	    margin-top: 10%;
	}

	#store-item-container {
	    display: grid;
	    grid-template-columns: 1fr 1fr;
	    margin-top: 100px;
	    padding: 0 75px;
	}

	.roll-over-zoom-in {
	    text-align: center;
	    color: gray;
	    margin: 1em;
	    font-weight: bold;
	}

	.item-media-container {
	    display: grid;
	    grid-template-columns: 1fr 6fr;
	    grid-gap: 2em;
	}

}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .description-container table {
        width: 100%!important;
    }
}

@media screen and (max-width: 768px) {
    .description-container table {
        width: 100%!important;
    }

    .description-container span {
        font-size: 10px!important;
    }

	.media-with-profile-container {
	    display: grid;
	    grid-template-columns: 1fr;
	}

    .header-action-buttons {
        margin: auto 0;
    }

    .donation-action-container {
        grid-template-columns: 1fr;
        grid-gap: 8px;
    }

    .make-donation {
        margin-top: 40%;
    }

}

@media only screen and (max-width: 600px) {
    .page-container {
        margin: 0 40px;
    }

    .popover-content > div {
        overflow: auto;
    }

    .store-items, .store-items-preview {
        grid-template-columns: 1fr;
    }

    .document-request {
        width: 100px!important;
    }

    .document-request-parent {
        width: 120px!important;
    }

    .add-to-cart-button {
        width: 100px;
        font-size: 0.8em;
    }
}

.campaign-action-button-green-disabled {
    background-color: #01338d63!important;
    cursor: default!important;
    pointer-events: none;
}

.header-action-buttons {
    margin: auto 0;
}
.text_hide,.text_load_more{
    font-size: 13px;
    text-decoration: none!important;
}

.attachment-display-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000a6;
    z-index: 9999;
}

.attachment-display-container {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
}

.file-upload-string {
    margin-top: 1em;
    font-size: 0.8em;
    display: grid;
    grid-auto-flow: column;
    width: 100%;
}

.upload-files-list {
    max-height: 300px;
    overflow-y: auto;
}

.files-list-close {
    text-align: right;
    margin: auto;
    margin-right: 12px;
    color: red;
    font-weight: bold;
    cursor: pointer;
}

.files-list-popup-title {
    margin: auto 20px; 
    text-align: left;
}

.uploaded-file-name {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}
.aspect-ratio {
    object-fit: contain;
}
.aspect-ratio-enabled{
    object-fit: cover;
    object-position: top;   
}


