* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: never;
    overflow-wrap: break-word;
}

html {
    background-color: white;
}

.main-color {
    color: #3390EC;
}

.main-color-bg {
    background-color: #3390EC;
}

.margin-center {
    margin: 0 auto;
}


@media (max-width: 1345px) {
    .hide-on-tablet {
        display: none;
    }
}


@media (min-width: 1345px) {
    .show-on-desktop {
        display: block !important;
    }

}

@media (max-width: 1345px) {
    .hide-on-tablet {
        display: none;
    }

}


.show-on-tablet {
    display: none;
}

@media (max-width: 1345px) {
    .show-on-tablet {
        display: block;
    }
}


@media (max-width: 830px) {
    .hide-on-phone {
        display: none !important;
    }
}

.show-on-phone {
    display: none;
}

@media (max-width: 830px) {
    .show-on-phone {
        display: block;
    }
}

:root {
    --transition-props: 0.5s ease-in-out;
}

.no-border-no-bg-button {
    border: none;
    cursor: pointer;
    background-color: transparent;
}

.banner-home {
    flex-grow: 1 !important;
}

@media (max-width: 1200px) {
    .banner-home {
        display: none !important;
    }
}


.flex-grow-1 {
    flex-grow: 1;
}

.text-center {
    text-align: center;
}

.display-flex {
    display: flex;
}

.product-buy-card {
    max-width: 250px;
    display: flex;
    flex-direction: column;

}


@media (max-width: 740px) {
    .product-buy-card {
        max-width: unset;
        flex-direction: row;
    }
}

@media (max-width: 540px) {
    .product-buy-card {
        flex-direction: column;
        max-width: calc(100%);
    }
}