﻿@media (min-width: 641px) {
   
    .icard  {
        min-width: 500px;
    }
}

.switcher:first-child .form-check-label:first-child label {
    display: inline;
}

.spin-logo {
    animation: spinrotation 3s infinite linear;
}

@keyframes spinrotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}