/* Vertical pagetabs */
        .vertical-tabs button {
            transition: 0.3s;
            background: none;
            font-size: 1.2em !important;
        }
    
    
    
        .vertical-tabs button.active::after {
            color: #be830e;
        }
    
    
    
    
        .tabContent {
            display: none;
            -webkit-animation: fadeEffect 1s;
            animation: fadeEffect 1s;
        }
    
        .tablinks::after {
            content: "›";
            font-size: 1.5em;
            line-height: 0.6em;
        }
    
    
    
        .tablinks:hover:after {
            color: #be830e;
        }
    
        /* Fade in tabs */
        @-webkit-keyframes fadeEffect {
            from {
                opacity: 0;
            }
    
            to {
                opacity: 1;
            }
        }
    
        @keyframes fadeEffect {
            from {
                opacity: 0;
            }
    
            to {
                opacity: 1;
            }
        }
    
    
        .vertical-pagetab {
            display: grid;
            grid-template-columns: 1fr;
        }
    
        .vertical-tabs {
            display: flex;
            flex-direction: row;
            grid-column-gap: 25px;
            justify-content: flex-start;
            width: 100%;
            overflow: auto;
        }
    
    
        @media only screen and (max-width: 991px) {
            .vertical-tabs button {
                border-top: 1px solid #bcbcbc;
            }
    
            .vertical-tabs button.active {
                border-top: 1px solid #be830e;
            }
    
            .vertical-tabs button:hover {
                border-top: 1px solid #be830e;
            }
        }
    
        @media only screen and (min-width: 992px) {
    
            .vertical-tabs button {
                border-bottom: 1px solid #bcbcbc;
            }
    
            .vertical-tabs button:hover {
                border-bottom: 1px solid #be830e;
            }
    
            .vertical-tabs button.active {
                border-bottom: 1px solid #be830e;
            }
        }
    
    
        @media only screen and (min-width: 992px) {
            .vertical-pagetab {
                grid-template-columns: 4fr 8fr;
                grid-column-gap: 45px;
            }
    
            .vertical-tabs {
                flex-direction: column;
                justify-content: stretch;
            }
        }