@import "../fonts/yekan-bakh/yekan-bakh.css";
/* Using a string */

body {
    font-family: 'YekanBakh';
    text-align: center;
    color: #424242;
}

.upgrade {
    padding: 25px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 60px;
    margin-bottom: 30px;
}

.upgrade h1 {
    font-weight: 700;
    font-size: 20px;
}

.upgrade div {
    font-weight: 300;
    font-size: 17px;
}

.upgrade div.bold {
    font-weight: 500;
}

.spinner {
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(270deg);
    }
}

@keyframes rotator {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(270deg);
    }
}

.path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
    0% {
        stroke: #4285F4;
    }

    25% {
        stroke: #DE3E35;
    }

    50% {
        stroke: #F7C223;
    }

    75% {
        stroke: #1B9A59;
    }

    100% {
        stroke: #4285F4;
    }
}

@keyframes colors {
    0% {
        stroke: #4285F4;
    }

    25% {
        stroke: #DE3E35;
    }

    50% {
        stroke: #F7C223;
    }

    75% {
        stroke: #1B9A59;
    }

    100% {
        stroke: #4285F4;
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }

    50% {
        stroke-dashoffset: 46.75;
        transform: rotate(135deg);
    }

    100% {
        stroke-dashoffset: 187;
        transform: rotate(450deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }

    50% {
        stroke-dashoffset: 46.75;
        transform: rotate(135deg);
    }

    100% {
        stroke-dashoffset: 187;
        transform: rotate(450deg);
    }
}

.card {
	width: 100%;
	background-color: rgba(196, 196, 196, 1);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	background-size: 100%;
	background-repeat: no-repeat;
}

.card img {
	height: 110px;
	object-fit: cover;
	width: 100%;
	max-width: 100%;
}

.icon {
    height: 40px;
    width: 40px;
    background-color: green;
    border-radius: 50%;
    margin: 15px;
    background-image: url('https://thumbs.dreamstime.com/b/person-icon-flat-style-man-symbol-person-icon-flat-style-man-symbol-isolated-white-background-simple-people-abstract-icon-118611127.jpg');
    background-size: cover;
    background-position: center;
}

.bottom {
    width: 100%;
    height: 80px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.heading {
    margin: 2px 10px;
    font-size: 15px !important;
    border-radius: 10px;
}

.subHeading {
    font-size: 15px;
    margin: 2px 10px;
}

.skeleton-gray {
    background: rgb(156, 156, 156);
    background-image: linear-gradient(115deg, rgba(196, 196, 196, 1) 20%, rgba(216, 216, 216, 1) 30%, rgba(216, 216, 216, 1) 35%, rgba(196, 196, 196, 1) 40%);
    background-position: 0% 0;
    background-size: 300% 200%;
    color: rgba(0, 0, 0, 0);
    animation: shimmer 1s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

    60%, 100% {
        background-position: -50% 0;
    }
}

.skeleton-white {
    background-image: linear-gradient(white 100%, transparent 0);
}

.products {
	max-width: 750px;
	margin-right: auto;
	margin-left: auto;
}

.product {
	width: 50%;
	margin: 15px;
}

.row {
	display: flex;
	justify-content: center;
	text-align: center;
	width: 100%;
}


@media screen and (max-width: 792px) {
    .product {
        width: 100%;
        margin: 30px;
    }
    .row {
        flex-wrap: wrap;
    }
    .card img {
        height: 150px;
    }
}