﻿.horizontalBtnContainer {
    div.veriBtn {
        background: #fbfbfb;
        border: 1px solid #1C4E8F;
        transition: all 0.4s;
        min-height: 0;

        a {
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
        }

        .icon {
            background: #1C4E8F;
            color: #fbfbfb;
            transition: all 0.4s;
        }

        .text {
            color: #1C4E8F;
            transition: all 0.4s;
        }

        &:hover {
            background: #fff;
            box-shadow: 0 0 8px #1A1727;

            .icon {
                background: #0e749f;
                color: #fff;
            }

            .text {
                text-shadow: -2px 2px 8px #aacced;
            }
        }
    }
}


.verticalBtnContainer {
    div.veriBtn {
        border: 1px solid #1C4E8F;
        transition: all 0.4s;

        a {
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;

            .icon {
                display: table-cell;
                vertical-align: middle;
                background: #1C4E8F;
                color: #fbfbfb;
            }

            .text {
                background: #fbfbfb;
                color: #1C4E8F;
                display: table-cell;
                vertical-align: middle;
                width: 100%;
            }
        }

        &:hover {
            box-shadow: 0 0 8px #1A1727;

            .icon {
                background: #0e749f;
                color: #fff;
            }

            .text {
                background: #fff;
                text-shadow: -2px 2px 8px #aacced;
            }
        }
    }
}
