/*
 * Theme Name: Tiger Safari
 * Description: Divi Child Theme for Tiger Safari Sites
 * Author: Big Cats Safari
 * Template: Divi
 * Text Domain: Divi
 */

/* custom css */

::selection {
    color: #ffffff;
    background-color: #ffcd05;
}

/* blog page sidebar wp widget css */

.recent-post {
    display: flex;
    flex-direction: column;
}

.recent-post img {
    border-radius: 5px;
    margin-right: 15px;
}

/* images aspect-ratio */

.img-aspect-32 img {
    aspect-ratio: 3/2;
    object-fit: cover;
}

.img-aspect-43 img {
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* image hover scale effect */

.img-hover-scale img {
    transition: scale ease .3s;
}

.img-hover-scale img:hover {
    scale: 1.1;
}

/* css for blog page to make grid same height */

.pa-blog-equal-height .pa-auto-height {
    height: auto !important;
}

.pa-blog-equal-height .pa-auto-margin {
    margin-top: 20px !important;
}

/* table css */

.table-style-css th,
td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.table-style-css th {
    background-color: #687279;
    color: #fff !important;
    font-weight: bold;
}

.table-style-css tr:nth-child(even) {
    background-color: #f7f7f7;
}

/* css for list icon to right tik */

.list-custom-icon ul {
    list-style-type: none;
    padding-bottom: 0 !important;
}

.list-custom-icon ul li::marker {
    content: "✔  ";
    color: #FFCD05;
}

/* css for packages detail page to make list flex */

.package-detail-known-list {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.package-detail-known-list li {
    margin-right: 40px;
}