



@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Sen:wght@400;700;800&display=swap');





:root {
    --openSans: 'Open Sans', sans-serif;
    --sen: 'Sen', sans-serif;
    --p-color: #04134a;
    --p-color-2: #01d5e0;
    --p-color-3: #0294fd;
    --p-color-4: #505078;
    --color-gray: #8c8c8c;
    --color-dark: #333333;
    --color-orange: #FF621F;
}

.trans03, .btn, a, .contact_bo, .contact_box:after, .contact_box:before, .contact_sec {
    transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    -o-transition: ease-in-out 0.3s;
    -webkit-transition: ease-in-out 0.3s;
}

.img__hover img {
    transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    -o-transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.py-120 {
    padding: 120px 0;
}

.mt-50 {
    margin-top: 50px;
}


.text-capitalized, .tour__name, .boat__name, .details_box .cost {
    text-transform: capitalize;
}

section, footer {
    font-family: var(--sen);
}

.tour__name, .details_box .text, .details_box, h1, h2, h3, h4, h5 {
    font-weight: 600;
}

.btn {
    border-radius: 0;
}

.btn-primary {
    /* background-color: var(--p-color-2);
    border-color: var(--p-color-2);
    background-image: linear-gradient(90deg, var(--p-color), var(--p-color-2)); */
    background-color: rgba(203,96,2,255);
    border-color: rgba(203,96,2,255);
    background-image: linear-gradient(90deg, #505304, rgba(203,96,2,255));
}

    .btn-primary:focus, .btn-primary:hover, .btn-primary:active {
        border-color: var(--p-color);
        box-shadow: rgba(3, 113, 124, 0.3) 0 15px 20px;
    }

.bg-primary {
    background-color: var(--p-color-2) !important;
}

a {
    color: var(--p-color-3);
}

.title {
    margin-bottom: 25px;
    text-transform: capitalize;
}

    .title h1 {
        font-size: 3.4em;
        text-transform: uppercase;
        font-weight: 600;
    }

    .title h1, h2, h3, h4, .tour__name, .color-primary {
        color: var(--color-dark) !important;
    }

.details_box .text, .pkg_details .text, .color-gray {
    color: var(--color-gray) !important;
}

    .details_box .text span {
        color: var(--color-dark) !important;
    }

.color-orange {
    color: var(--color-orange) !important;
}



.text-18 {
    font-size: 18px;
}

.text-16 {
    font-size: 16px;
}





[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 28px;
        cursor: pointer;
        line-height: 20px;
        display: inline-block;
        color: #666;
    }

        [type="radio"]:checked + label:before,
        [type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 16px;
            height: 16px;
            border: 1px solid var(--color-orange);
            border-radius: 100%;
            background: #fff;
        }

        [type="radio"]:checked + label:after,
        [type="radio"]:not(:checked) + label:after {
            content: '';
            width: 10px;
            height: 10px;
            background: var(--color-orange);
            position: absolute;
            top: 3px;
            left: 3px;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        [type="radio"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        [type="radio"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }



.checkBoxCustom input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.checkBoxCustom label {
    position: relative;
    cursor: pointer;
}

    .checkBoxCustom label:before {
        content: '';
        -webkit-appearance: none;
        background-color: transparent;
        border: 1.5px solid var(--color-orange);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
        padding: 8px;
        display: inline-block;
        position: relative;
        vertical-align: middle;
        cursor: pointer;
        margin-right: 5px;
        transition: 0.3s ease-in-out;
    }

.checkBoxCustom input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 7px;
    left: 7px;
    width: 6px;
    height: 10px;
    border: solid var(--color-orange);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: 0.3s ease-in-out;
}

.checkBoxCustom.switch label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1.5px solid var(--color-gray);
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 0;
    margin-right: 7px;
    width: 25px;
    height: 10px;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}

.checkBoxCustom.switch input:checked + label:before {
    border-color: var(--color-orange);
}

.checkBoxCustom.switch label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 0px;
    border: none;
    border-width: inherit;
    background: var(--color-gray);
    width: 15px;
    height: 15px;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}

.checkBoxCustom.switch input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 10px;
    border: none;
    border-width: inherit;
    background: var(--color-orange);
    width: 15px;
    height: 15px;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}



/*Basha*/
.wordbreak {
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    word-break: break-all;
    white-space: normal;
}

.stdBorderLeft {
    font-weight: bold;
    /*background-color: #343a40;*/
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    border-left: solid 1px #ddd;
    /*text-shadow: 1px 1px #FFCC00;*/
    color: #fff;
    height: 30px;
    padding: 3px;
    text-align: center;
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    word-break: break-word;
    white-space: normal;
}

.stdBorderRight {
    font-weight: bold;
    /*background-color: #343a40;*/
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
    /*text-shadow: 1px 1px #FFCC00;*/
    color: #fff;
    height: 30px;
    padding: 3px;
    text-align: center;
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    word-break: break-word;
    white-space: normal;
}

.stdContentLeft {
    border-bottom: solid 1px #ddd;
    border-left: solid 1px #ddd;
    color: Black;
    padding: 3px;
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    word-break: break-word;
    white-space: normal;
    min-height: 35px;
}


.stdContentRight {
    border-bottom: solid 1px #ddd;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
    color: Black;
    padding: 3px;
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    word-break: break-all;
    white-space: normal;
}

.stdBorderLeft_BreakAll {
    font-weight: bold;
    /*background-color: #343a40;*/
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    border-left: solid 1px #ddd;
    /*text-shadow: 1px 1px #FFCC00;*/
    color: #fff;
    height: 30px;
    padding: 3px;
    text-align: center;
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    word-break: break-word;
    white-space: normal;
}

.stdBorderRight_BreakAll {
    font-weight: bold;
    /*background-color: #343a40;*/
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
    /*text-shadow: 1px 1px #FFCC00;*/
    color: #fff;
    height: 30px;
    padding: 3px;
    text-align: center;
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    word-break: break-word;
    white-space: normal;
}

.stdContentLeft_BreakAll {
    border-bottom: solid 1px #ddd;
    border-left: solid 1px #ddd;
    color: Black;
    padding: 3px;
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    word-break: break-word;
    white-space: normal;
    min-height: 35px;
}


.stdContentRight_BreakAll {
    border-bottom: solid 1px #ddd;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
    color: Black;
    padding: 3px;
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    word-break: break-word;
    white-space: normal;
}


.nopadding {
    padding: 0%;
}

.Easylinks_Padding {
    padding: 5px;
    border: solid 1px #ccc;
    text-align: center;
    background-color: #eeffee;
    margin-top: .5%;
    font-size: 16px;
    font-weight: bold;
}

.viewprofilelabel {
    color: #003b46;
    font-weight: bold;
    line-height: 2;
    font-size: 24px;
}

#widget {
    position: absolute;
}

#widgetField {
    width: 350px;
    height: 26px;
    background: url(../../images/field.png);
    overflow: hidden;
    position: relative;
}

    #widgetField a {
        display: block;
        position: absolute;
        width: 26px;
        height: 26px;
        top: 0;
        right: 0;
        text-decoration: none;
        text-indent: -3000px;
    }

    #widgetField span {
        font-size: 12px;
        font-weight: bold;
        color: #000;
        position: absolute;
        top: 0;
        height: 26px;
        line-height: 26px;
        left: 5px;
        width: 250px;
        text-align: center;
    }

#widgetCalendar {
    position: absolute;
    top: 26px;
    left: 0;
    height: 0px;
    overflow: hidden;
    width: 588px;
    background: #B9B9B9;
}

    #widgetCalendar .datepicker {
        position: absolute;
        bottom: 0;
        top: auto;
    }

    #widgetCalendar .datepickerContainer,
    #widgetCalendar .datepickerBorderT,
    #widgetCalendar .datepickerBorderB,
    #widgetCalendar .datepickerBorderL,
    #widgetCalendar .datepickerBorderR,
    #widgetCalendar .datepickerBorderTL,
    #widgetCalendar .datepickerBorderTR,
    #widgetCalendar .datepickerBorderBL,
    #widgetCalendar .datepickerBorderBR {
        background: transparent !important;
    }

    #widgetCalendar .datepicker a:hover {
        color: #b6f063;
    }

.col3 {
    width: 3%;
}

.col4 {
    width: 4%;
}

.col5 {
    width: 5%;
}

.col6 {
    width: 6%;
}

.col7 {
    width: 7%;
}

.col8 {
    width: 8%;
}

.col9 {
    width: 9%;
}

.col10 {
    width: 10%;
}

.col12 {
    width: 12%;
}

.col15 {
    width: 15%;
}

.col20 {
    width: 20%;
}

.col30 {
    width: 30%;
}

.col40 {
    width: 40%;
}

.col60 {
    width: 60%;
}

@media only screen and (max-width: 1100px) {
    .stdMainPopup {
        width: 95%;
    }

    .divInner_Dup {
        width: 100%;
    }

    .col3 {
        width: 100%;
    }

    .col4 {
        width: 100%;
    }

    .col5 {
        width: 100%;
    }

    .col6 {
        width: 100%;
    }

    .col7 {
        width: 100%;
    }

    .col8 {
        width: 100%;
    }

    .col9 {
        width: 100%;
    }

    .col10 {
        width: 100%;
    }

    .col12 {
        width: 100%;
    }

    .col15 {
        width: 100%;
    }

    .col20 {
        width: 100%;
    }

    .col30 {
        width: 100%;
    }

    .col40 {
        width: 100%;
    }

    .col60 {
        width: 100%;
    }
    /* Force table to not be like tables anymore */
    #no-more-tables table,
    #no-more-tables thead,
    #no-more-tables tbody,
    #no-more-tables th,
    #no-more-tables td,
    #no-more-tables tr {
        display: block;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        #no-more-tables thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    #no-more-tables tr {
        border: 1px solid #ccc;
    }

    #no-more-tables td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
    }

    #no-more-tables .fiveper {
        width: 0%;
    }

    #no-more-tables .tenper {
        width: 0%;
    }

    #no-more-tables .fifteenper {
        width: 0%;
    }

    #no-more-tables .fortyper {
        width: 0%;
    }

    #no-more-tables td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    /*
	Label the data
	*/
    #no-more-tables td:before {
        content: attr(data-title);
    }
}

/*basha code end*/



/*Ravikanth CSS*/
.hovercontentpopup {
    width: 40%;
    background-color: #DFDBD4;
    border: solid 1px #855781;
    position: absolute;
    overflow: auto;
}

.modalBackground {
    background-color: Gray;
    filter: alpha(opacity=70);
    opacity: 0.7;
}

.stdMainPopup {
    /* background: url("../Images/Header_BG.png"); */
    border-radius: 10px;
    width: 60%;
}

.stdPopupClose {
    cursor: pointer;
    position: relative;
    background-position: top;
    margin-bottom: -30px;
    margin-top: -23px;
    margin-right: -28px;
}

.stdPopupInnerMain {
    background-color: #fff;
    border: 2px solid #579DD1;
    border-radius: 10px;
    margin: 10px;
    float: left;
}

.stdPopupInnerContent {
    float: left;
    margin: 5px 30px 10px 25px;
}

.stdPopupInnerContentHeading {
    float: left;
    font-weight: bold;
    color: #073881;
    font-size: 18px;
}

.pagination {
    display: block !important;
}

.SearchPopUpNew_Map {
    margin-top: 3px;
    background-color: #EAEAEA;
    border: 2px solid #69B7AB;
    border-radius: 10px;
    padding: 10px;
    width: 40%;
    margin-left: -38%;
}

    .SearchPopUpNew_Map .mdPopup {
        width: 30%;
    }

@media only screen and (max-width:900px) {
    .SearchPopUpNew_Map {
        margin-top: 3px;
        background-color: #EAEAEA;
        border: 2px solid #69B7AB;
        border-radius: 10px;
        padding: 10px;
        width: 90.5%;
        margin-left: 5%;
        left: 0px !important;
    }

    .hovercontentpopup {
        width: 90%;
        background-color: #DFDBD4;
        border: solid 1px #855781;
        position: absolute;
        overflow: auto;
    }
}

@media only screen and (max-width:767px) {
    .SearchPopUpNew_Map {
        margin-top: 3px;
        background-color: #EAEAEA;
        border: 2px solid #69B7AB;
        border-radius: 10px;
        padding: 10px;
        width: 90.5%;
        margin-left: 5%;
        left: 0px !important;
    }

    .hovercontentpopup {
        width: 90%;
        background-color: #DFDBD4;
        border: solid 1px #855781;
        position: absolute;
        overflow: auto;
    }
}

@media only screen and (max-width:470px) {
    .SearchPopUpNew_Map {
        margin-top: 3px;
        background-color: #EAEAEA;
        border: 2px solid #69B7AB;
        border-radius: 10px;
        padding: 10px;
        width: 90.5%;
        margin-left: 5%;
        left: 0px !important;
    }

    .hovercontentpopup {
        width: 90%;
        background-color: #DFDBD4;
        border: solid 1px #855781;
        position: absolute;
        overflow: auto;
    }
}

.PageInnerHeadingDetailsMain {
    float: left;
    color: #3f3f3f;
    height: 30px;
    Font-family: nevis;
    border-bottom: solid 2px lightgray;
    width: 100%;
    margin-top: 0px;
}

.PageInnerHeadingDetailsSub {
    float: left;
    padding-left: 2%;
    padding-right: 2%;
    border-top-right-radius: 10px;
    padding-top: 5px;
    border-top-left-radius: 10px;
    height: 30px;
    background-color: lightgray;
    color: #3f3f3f;
}

.TeplateHeader_Table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    color: white;
    text-align: center;
}

.ItemTeplateContent_TablePrint_TopBorder {
    border-top: solid 1px black;
}
/*End*/
.hide {
    display: none;
}

.blinking {
    font-size: 26px;
    animation: blinkingText 1.2s infinite;
}

@keyframes blinkingText {
    0% {
        color: red;
    }

    49% {
        color: red;
    }

    60% {
        color: transparent;
    }

    99% {
        color: transparent;
    }

    100% {
        color: red;
    }
}

.lblViewDetails {
    color: maroon;
    font-weight: bold;
}
