﻿/*Custom loader spinner*/
.spinner {
    border: 6px solid silver;
    border-top: 6px solid #fc383b;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 700ms linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

/*Oher blocks styles*/
.perpetual-label:after {
    content: none;
}

.perpetual-label:before {
    content: none;
}

select.userQuantity {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    margin-left: 15px;
    min-width: 200px;
}

    select.userQuantity:focus {
        background-image: linear-gradient(45deg, green 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%), linear-gradient(to right, #ccc, #ccc);
        background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
        background-size: 5px 5px, 5px 5px, 1px 1.5em;
        background-repeat: no-repeat;
        border-color: green;
        outline: 0;
    }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    opacity: 1;
}

.perpetualChangeLink {
    color: #da292d;
    text-decoration: underline;
    float: left;
    margin-left: 15px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 300;
}

    .perpetualChangeLink:hover {
        text-decoration: none;
    }

/* Style the tab */
.tab {
    overflow: hidden;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 12px 22px 12px;
}

    /* Style the buttons that are used to open the tab content */
    .tab button {
        background-color: inherit;
        float: left;
        border: 1px solid #ccc;
        outline: none;
        cursor: pointer;
        padding: 8px 10px;
        transition: 0.3s;
        width: 100%;
        color: #444c50;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #ddd;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            border: 2px solid #444c50;
        }

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    text-align: left;
}

    .tabcontent table {
        font-size: 90%;
    }

    .tabcontent div {
        font-size: 130%;
        margin-bottom: 15px;
    }

    .tabcontent p {
        font-weight: bold;
        font-size: 95%;
    }

.spanForntSize80 {
    font-size: 80%;
}

.ShowHideSubscriptionPerpetualPriceByYearsInfoBlock {
    color: black;
    border: none;
    box-shadow: none;
    cursor: pointer;
}

    .ShowHideSubscriptionPerpetualPriceByYearsInfoBlock:hover {
        color: black;
    }

h6 {
    font-size: 90%;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #ccc;
    line-height: 0.1em;
}

    h6 span {
        text-decoration: underline;
        background-color: rgb(242, 242, 242);
        padding: 0 10px;
    }

.switchbutton {
    background-color: rgb(242, 242, 242);
    width: 100%;
    text-align: center;
    border: 1px solid #ccc;
    font-weight: normal;
}

.switchbutton:hover {
    background-color: #ddd;
}


.resellers-block {
    text-align: center;
}
.resellers-block .top {
    padding: 0;
}
.resellers-block .top p {
    margin: 15px 0 20px;
}
.resellers-block .renew-license-directly {
    display: inline-block;
    font-family: "Open Sans",sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    font-style: italic;
}
.resellers-block .link_external:hover {
    text-decoration: none;
}

@media only screen and (max-width:767px) {
    .hide-on-mobile {
        display: none !important;
    }

    .show-on-moblile {
        display: block !important;
    }
}

.license-margin{
    margin: 20px 0;
}

.spinnerWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.spinner-in-button {
    border: 6px solid silver;
    border-top: 6px solid #fc383b;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 700ms linear infinite;
    display: flex;
}