/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 1.10.2021, 13:45:16
    Author     : pbartos
*/

/*
    červené pozadí nadpisů v sekci
*/

.c-article .shadow.a-arrma {
    padding: 0px;
}

.c-article .shadow.a-arrma > h3 {
    padding: 10px;
    margin: 0;
    background-image: url('/content/articles/arrma_background_1.jpg'); 
    background-repeat: repeat; 
    background-origin: border-box;
    color: white;
    background-size: contain;

}
.c-article .shadow.a-arrma > div {
    padding: 10px;
}

/*
     tabulka arrma s červenou hlavičkou
*/


table.arrma_tab,th {
 border: 1px solid white !important;
}

table.arrma_tab thead tr th {
    background-color: gray;
    color: white;
}

table.arrma_tab td {
 border: 3px solid white;
 background-color: #f0f0f0;
}



/*
     Rollover Image
*/


.image_change_wrapper {
    width: 100%
}


.image_change {
    position: relative;

}

.image_change img {
    width: 100%;
    display: block;
}

.image_change img.image-hover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    object-fit: contain;
    opacity: 0;
    transition: opacity .5s;
}
.image_change:hover img.image-hover {
    opacity: 1;
}