html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.tab {
    overflow: hidden;
    display: flex;
    cursor: pointer;
    border: none;
    background-color: #202224;
}

    /* Style the buttons that are used to open the tab content */
    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
        color:white;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #5e6166;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            background-color: #5e6166;
        }

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 40px 25px;
    font-size: 21px;
    /* border: 1px solid #ccc; */
    border-top: none;
    text-align: left;
    height: 200px;
    background: #202224;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

    .tabcontent.active {
        display: block;
        transform: translateX(0);
    }

@media (max-width: 600px) {
    .tab button {
        padding: 8px;
        font-size: 14px;
    }

    .tabcontent {
        padding: 15px;
    }
}

@media (max-width: 400px) {
    .tab button {
        padding: 6px;
        font-size: 9px;
    }

    .tabcontent {
        padding: 72px 25px;
    }
}