/*
* idnovate support module
*
* NOTICE OF LICENSE
*
* This product is licensed for one customer to use on one installation (test stores and multishop included).
* Site developer has the right to modify this module to suit their needs, but can not redistribute the module in
* whole or in part. Any other use of this module constitues a violation of the user agreement.
*
* DISCLAIMER
*
* NO WARRANTIES OF DATA SAFETY OR MODULE SECURITY
* ARE EXPRESSED OR IMPLIED. USE THIS MODULE IN ACCORDANCE
* WITH YOUR MERCHANT AGREEMENT, KNOWING THAT VIOLATIONS OF
* PCI COMPLIANCY OR A DATA BREACH CAN COST THOUSANDS OF DOLLARS
* IN FINES AND DAMAGE A STORES REPUTATION. USE AT YOUR OWN RISK.
*
*  @author    idnovate
*  @copyright 2022 idnovate
*  @license   See above
*/

#main .idnovatesupport-products-container .card.page-content {
    padding: 0;
    margin-bottom: 12px;
}

.idnovatesupport-products-list {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

@media (max-width: 414px) {
    .idnovatesupport-products-list {
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto;
        padding: 0;
        margin-top: 0;
        align-content: stretch;
        justify-content: space-evenly;
        align-items: baseline;
    }
}

.idnovatesupport-products-item {
    margin: 8px;
    padding: 20px;
}

.idnovatesupport-product {
    max-width: 250px;
    width: 100%;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.idnovatesupport-product-image {
    width: 250px;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.idnovatesupport-product-image img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.25s ease-out;
}

.idnovatesupport-product-title {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 19px;
    min-height: 57px;
}

.idnovatesupport-product-purchased-date {
    color: #7a7a7a;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 20px;
    margin: 0;
}

.idnovatesupport-product-version {
    color: #7a7a7a;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 20px;
    margin: 0;
}

.idnovatesupport-product-compatibility {
    color: #7a7a7a;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 20px;
    margin: 0 0 5px 0;
}

.idnovatesupport-product-support-validity {
    color: #fff;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
    float: right;
    text-transform: uppercase;
    font-size: smaller;
    letter-spacing: 3px;
}

.idnovatesupport-product-support-validity.support-valid {
    background-color: #4cbb6c;
}

.idnovatesupport-product-support-validity.support-expired {
    background-color: #ff0076;
}

.idnovatesupport-product-combinations {
    margin-bottom: 5px;
}

.idnovatesupport-product-combinations-text {
    color: #232323;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
    margin-bottom: 0;
}

.idnovatesupport-product-combinations a {
    display: block;
    color: #7a7a7a;
}

.idnovatesupport-product-registered-domain {
    margin-bottom: 5px;
}

.idnovatesupport-product-registered-domain-text {
    color: #fff;
    padding: 5px;
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 0;
    background-color: #4cbb6c;
}

.idnovatesupport-product-registered-domain-text.not-registered {
    color: #fff;
    background-color: #ff0076;
    text-align: center;
}

.idnovatesupport-product-registered-domain a {
    display: block;
}

a.idnovatesupport-product-get-support,
a.idnovatesupport-product-download,
button.idnovatesupport-product-renew-support,
button.idnovatesupport-product-no-support {
    width: 100%;
    padding: 7px!important;
    /*text-transform: inherit;
    color: #fff!important;*/
}

a.idnovatesupport-product-download.btn-primary.registered,
a.idnovatesupport-product-get-support.btn-primary.registered {
    background: #4cbb6c;
    color: #ffffff;
    border: solid 4px #4cbb6c;
}

a.idnovatesupport-product-download.btn-primary.registered:hover,
a.idnovatesupport-product-get-support.btn-primary.registered:hover {
    background: #ffffff;
    color: #4cbb6c;
    border: solid 4px #4cbb6c;
}

.idnovatesupport-product-renew-support {
    background-color: #ff0076;
}

.idnovatesupport-product-renew-support:active {
    background-color: #ffffff;
}

.idnovatesupport-product-renew-support:hover {
    background-color: #ffffff!important;
}

.idnovatesupport-product-renew-support:focus {
    background-color: #ffffff;
}

.idnovatesupport-product-no-support {
    background-color: #ffffff;
}

.idnovatesupport-product-no-support:active {
    background-color: #ffffff;
}

.idnovatesupport-product-no-support:hover {
    background-color: #ffffff!important;
}

.idnovatesupport-product-no-support:focus {
    background-color: #ffffff;
}

.idnovatesupport-button-download {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 40px;
    width: 40px;
    min-width: 40px;
    padding-top: 3px;
    background-color: #ffffff;
    box-shadow: 2px 2px 4px 0 rgb(0 0 0 / 20%);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s ease-out;
    border: none;
}

.idnovatesupport-button-download:hover,
.idnovatesupport-button-download:visited,
.idnovatesupport-button-download:focus,
.idnovatesupport-button-download:active {
    text-decoration: none;
}

.idnovatesupport-button-download i {
    color: #7a7a7a;
}

#module-idnovatesupport-downloads .jBox-container .jBox-title,
#module-idnovatesupport-support .jBox-container .jBox-title {
    font-size: large;
    font-weight: 700;
    background-color: #ff0076;
    color: #fff;
}

#module-idnovatesupport-downloads .jBox-container .jBox-closeButton path,
#module-idnovatesupport-support .jBox-container .jBox-closeButton path {
    fill: #fff;
}

#module-idnovatesupport-downloads .jBox-container .jBox-Confirm-button-submit,
#module-idnovatesupport-support .jBox-container .jBox-Confirm-button-submit {
    background-color: #ff0076;
}

#module-idnovatesupport-downloads .jBox-container .jBox-Confirm-button-cancel,
#module-idnovatesupport-support .jBox-container .jBox-Confirm-button-cancel {
    background: #7a7a7a;
    color: #fff;
}

.idnovatesupport-notice-success .jBox-container {
    background: #4cbb6c!important;
    color: #fff;
}

.idnovatesupport-notice-error .jBox-container {
    background: #ff0076!important;
    color: #fff;
}

.idnovatesupport-registered-domain-tooltip .jBox-container {
    background: #4cbb6c!important;
    color: #fff;
}

.idnovatesupport-registered-domain-tooltip .jBox-pointer:after {
    background-color: #4cbb6c;
}

.idnovatesupport-register-product-name {
    text-align: left;
    font-weight: 700;
    padding-left: 0;
}

.row .idnovatesupport-register-product-domain {
    margin-top: 25px;
    width: 100%;
}

.row .idnovatesupport-register-explanation {
    margin-top: 25px;
    text-align: justify;
}

.idnovatesupport-register-product-order-datas {
    margin-top: 18px;
    text-align: left;
}

.idnovatesupport-register-product-order-reference,
.idnovatesupport-register-product-order-date {
    font-size: 0.87rem;
    margin-bottom: 0;
}

.page-order-detail .input-group .input-group-btn>label.btn {
    font-size: 0.934rem;
}

.page-order-detail .form-group input#file-upload {
    width: 80%;
    height: 100%;
}

.page-order-detail .messages .message {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    margin-top: 0;
    padding-top: 0.5rem;
}

.page-order-detail .messages .message span.material-icons {
    vertical-align: bottom;
}

.page-order-detail .messages .message .idnovatesupport_message_licensed_to,
.page-order-detail .messages .message .idnovatesupport_message_module {
    font-size: small;
    /*background-color: #ff0076;color: #ffffff;padding: 5px;*/
}

#module-idnovatesupport-support .box {
    padding: 1rem;
    background: #fff;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

#module-idnovatesupport-support .messages .message {
    margin-top: 0.5rem;
    border-bottom: 1px solid #f6f6f6;
}

#module-idnovatesupport-support .messages .message>div {
    margin-bottom: 0.5rem;
}

.idnovate_demo_links_tabs {
    margin-bottom: 1rem;
}

.idnovate_demo_link_fo i:before {
    content: "\f0b1";
}

.idnovate_demo_link_bo i:before {
    content: "\f108";
}

.btn.idnovate_demo_link_fo,
.btn.idnovate_demo_link_bo {
    background: #1f1f1f;
    color: #ffffff;
    border: solid 4px #1f1f1f;
}

.btn.idnovate_demo_link_fo:hover,
.btn.idnovate_demo_link_bo:hover {
    background: #ffffff;
    color: #1f1f1f;
    border: solid 4px #1f1f1f;
}

.quickview-product-additional-info .idnovate_demo_links_tabs {
    display: none;
}