body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Lato;
   font-weight: normal;
   font-size: 13px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
#wb_top
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   background-color: #000000;
   background-image: none;
   border-top-width: 0px;
   border-right-width: 0px;
   border-bottom-width: 1px;
   border-left-width: 0px;
   border-top-style: solid;
   border-right-style: solid;
   border-bottom-style: solid;
   border-left-style: solid;
   border-top-color: #03BEC7;
   border-right-color: #000000;
   border-bottom-color: #03BEC7;
   border-left-color: #000000;
   box-sizing: border-box;
   margin: 0;
}
#top
{
   box-sizing: border-box;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   padding: 5px 0 5px 0;
   margin-right: auto;
   margin-left: auto;
   max-width: 1200px;
}
#top > .col-1, #top > .col-2, #top > .col-3
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 10px;
   padding-left: 10px;
   position: relative;
}
#top > .col-1, #top > .col-2, #top > .col-3
{
   flex: 0 0 auto;
}
#top > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 25%;
   max-width: 25%;
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   align-self: stretch;
   align-items: center;
   justify-content: center;
   text-align: center;
}
#top > .col-2
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 58.33333333%;
   max-width: 58.33333333%;
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   align-self: stretch;
   align-items: center;
   justify-content: center;
   text-align: center;
}
#top > .col-3
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 16.66666667%;
   max-width: 16.66666667%;
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   align-self: stretch;
   align-items: center;
   justify-content: center;
   text-align: center;
}
@media (max-width: 1100px)
{
#top > .col-1, #top > .col-2, #top > .col-3
{
   flex-basis: 100% !important;
   max-width: 100% !important;
}
}
#wb_master-frameLayoutGrid2
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   background-color: #000000;
   background-image: none;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   box-sizing: border-box;
   margin: 0;
}
#master-frameLayoutGrid2
{
   box-sizing: border-box;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   padding: 0;
   margin-right: auto;
   margin-left: auto;
   max-width: 1200px;
}
#master-frameLayoutGrid2 > .col-1
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 15px;
   padding-left: 15px;
   position: relative;
}
#master-frameLayoutGrid2 > .col-1
{
   flex: 0 0 auto;
}
#master-frameLayoutGrid2 > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 100%;
   max-width: 100%;
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   align-self: stretch;
   align-items: center;
   justify-content: center;
   text-align: center;
}
@media (max-width: 1100px)
{
#master-frameLayoutGrid2 > .col-1
{
   flex-basis: 100% !important;
   max-width: 100% !important;
}
}
/*MIT LICENCE*/
/*Web builder FX*/
.floating-wpp {
    position: fixed;
    bottom: 20px;
    left: 15px;
    font-size: 12px;
    transition: bottom 0.2s;
}

.floating-wpp .floating-wpp-button {
    position: relative;
    border-radius: 50%;
    box-shadow: 1px 1px 4px rgba(60, 60, 60, 0.4);
    transition: box-shadow 0.2s;
    cursor: pointer;
    overflow: hidden;
}

.floating-wpp .floating-wpp-button img,
.floating-wpp .floating-wpp-button svg {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.floating-wpp:hover {
    bottom: 17px;
}

.floating-wpp:hover .floating-wpp-button {
    box-shadow: 1px 2px 8px rgba(60, 60, 60, 0.4);
}

.floating-wpp .floating-wpp-popup {
    /*border: 2px solid white;*/
    border-radius: 5px;
    background-color: #E9FFE9;
    position: absolute;
    overflow: hidden;
    padding: 0;
    box-shadow: 5px 5px 8px rgba(60, 60, 60, 0.25);
    width: 0px;
    height: 0px;
    bottom: 0;
    opacity: 0;
    transition: bottom 0.1s ease-out, opacity 0.2s ease-out;
    transform-origin: bottom;
}

.floating-wpp .floating-wpp-popup.active {
    padding: 0 12px 12px 12px;
    width: 260px;
    height: auto;
    bottom: 82px;
    opacity: 1;
}

.floating-wpp .floating-wpp-popup .floating-wpp-message {
    background-color: white;
    padding: 8px;
    border-radius: 0px 5px 5px 5px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.2s;
}

.floating-wpp .floating-wpp-popup.active .floating-wpp-message {
    opacity: 1;
    transition-delay: 0.2s;
}

.floating-wpp .floating-wpp-popup .floating-wpp-head {
    text-align: right;
    color: white;
    margin: 0 -15px 10px -15px;
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.floating-wpp .floating-wpp-input-message {
    background-color: #F5F5F5;
    margin: 10px -15px -15px -15px;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.floating-wpp .floating-wpp-input-message textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: none;
    padding: 8px;
    margin: 10px 0;
    width: 100%;
    max-width: 100%;
    font-family: inherit;
    font-size: inherit;
    resize: none;
}

.floating-wpp .floating-wpp-btn-send {
    margin-left: 12px;
    font-size: 0;
    cursor: pointer;
}
#wbfx_flecha_arriba
{
   background-color: transparent;
   background-image: none;
   border-radius: 0px;
   opacity: 0.80;
}
#wb_indexFontAwesomeIcon1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #245580;
   border-radius: 0px;
   text-align: center;
   margin: 0;
   padding: 0;
   vertical-align: top;
}
#wb_indexFontAwesomeIcon1 a::after
{
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   z-index: 1;
   pointer-events: auto;
   content: "";
}
#indexFontAwesomeIcon1
{
   height: 35px;
   width: 35px;
}
#indexFontAwesomeIcon1 i
{
   color: #D93D4B;
   display: inline-block;
   font-size: 35px;
   line-height: 35px;
   vertical-align: middle;
   width: 34px;
}
#wb_indexFontAwesomeIcon1:hover #indexFontAwesomeIcon1 i
{
   color: #4F4F4F;
}
#wb_master-frameLayoutGrid5
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   background-color: transparent;
   background-image: none;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   box-sizing: border-box;
   margin: 0;
}
#master-frameLayoutGrid5
{
   box-sizing: border-box;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   padding: 10px 0 10px 0;
   margin-right: auto;
   margin-left: auto;
   max-width: 190px;
}
#master-frameLayoutGrid5 > .col-1, #master-frameLayoutGrid5 > .col-2
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 0px;
   padding-left: 0px;
   position: relative;
}
#master-frameLayoutGrid5 > .col-1, #master-frameLayoutGrid5 > .col-2
{
   flex: 0 0 auto;
}
#master-frameLayoutGrid5 > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 16.66666667%;
   max-width: 16.66666667%;
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   align-self: stretch;
   align-items: center;
   justify-content: center;
   text-align: center;
}
#master-frameLayoutGrid5 > .col-2
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 83.33333333%;
   max-width: 83.33333333%;
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   align-self: stretch;
   align-items: center;
   justify-content: center;
   text-align: center;
}
@media (max-width: 0px)
{
#master-frameLayoutGrid5 > .col-1, #master-frameLayoutGrid5 > .col-2
{
   flex-basis: 100% !important;
   max-width: 100% !important;
}
}
#wb_master-frameText1 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText1 div
{
   text-align: left;
}
#wb_master-frameText1
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_Text3 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 10px 0 5px 0;
   margin: 0;
   text-align: center;
}
#wb_Text3 div
{
   text-align: center;
}
#wb_Text3
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_Image3
{
   margin: 0;
   vertical-align: top;
}
#Image3
{
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   display: inline-block;
   width: 32px;
   height: 32px;
   vertical-align: top;
}
#wb_Image4
{
   margin: 0;
   vertical-align: top;
}
#Image4
{
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   display: inline-block;
   width: 32px;
   height: 32px;
   vertical-align: top;
}
#master-frameLine3
{
   border-color: transparent;
   border-style: solid;
   border-bottom-width: 20px;
   border-top: 0;
   border-left: 0;
   border-right: 0;
   height: 0 !important;
   line-height: 0 !important;
   margin: 0;
   padding: 0;
}
#master-frameLine4
{
   border-color: transparent;
   border-style: solid;
   border-bottom-width: 23px;
   border-top: 0;
   border-left: 0;
   border-right: 0;
   height: 0 !important;
   line-height: 0 !important;
   margin: 0;
   padding: 0;
}
#wb_master-frameImage1
{
   margin: 0;
   vertical-align: top;
}
#master-frameImage1
{
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   display: inline-block;
   width: 24px;
   height: 24px;
   vertical-align: top;
}
#wb_master-frameLayoutGrid1
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   background-color: #F5F5F5;
   background-image: none;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   box-sizing: border-box;
   margin: 0;
}
#master-frameLayoutGrid1
{
   box-sizing: border-box;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   padding: 10px 0 10px 0;
   margin-right: auto;
   margin-left: auto;
   max-width: 1200px;
}
#master-frameLayoutGrid1 > .col-1
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 15px;
   padding-left: 15px;
   position: relative;
}
#master-frameLayoutGrid1 > .col-1
{
   flex: 0 0 auto;
}
#master-frameLayoutGrid1 > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 100%;
   max-width: 100%;
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   align-self: stretch;
   align-items: center;
   justify-content: center;
   text-align: center;
}
@media (max-width: 1100px)
{
#master-frameLayoutGrid1 > .col-1
{
   flex-basis: 100% !important;
   max-width: 100% !important;
}
}
#wb_master-frameResponsiveMenu2
{
   display: block;
   background-color: #F5F5F5;
   font-family: "Raleway";
   font-weight: 500;
   text-align: center;
   width: 100%;
   z-index: 1111 !important;
}
#master-frameResponsiveMenu2
{
   display: inline-block;
   background-color: #F5F5F5;
   height: 50px;
}
#wb_master-frameResponsiveMenu2 ul
{
   list-style: none;
   margin: 0;
   padding: 0;
   position: relative;
}
#wb_master-frameResponsiveMenu2 ul:after
{
   clear: both;
   content: "";
   display: block;
}
#wb_master-frameResponsiveMenu2 ul li
{
   border-radius: 0;
   display: list-item;
   float: left;
   list-style: none;
   z-index: 9999;
}
#wb_master-frameResponsiveMenu2 ul li i
{
   font-size: 0px;
   width: 0px;
   margin-bottom: 0px;
}
#wb_master-frameResponsiveMenu2 ul li a
{
   background-color: #F5F5F5;
   color: #2D2D2D;
   font-family: "Raleway";
   font-weight: 500;
   font-size: 15px;
   font-style: normal;
   text-decoration: none;
   text-transform: none;
   padding: 15px 30px 15px 30px;
   text-align: center;
}
#wb_master-frameResponsiveMenu2 > ul > li > a 
{
   height: 20px;
}
.master-frameResponsiveMenu2 a 
{
   display: block;
}
#wb_master-frameResponsiveMenu2 li:hover > a, #wb_master-frameResponsiveMenu2 li .active
{
   background-color: #F5F5F5;
   color: #03BEC7;
}
#wb_master-frameResponsiveMenu2 ul ul
{
   display: none;
   position: absolute;
   top: 50px;
}
#wb_master-frameResponsiveMenu2 ul li:hover > ul
{
   display: list-item;
}
#wb_master-frameResponsiveMenu2 ul ul li 
{
   float: none;
   position: relative;
   width: 204px;
}
#wb_master-frameResponsiveMenu2 ul ul li a
{
   background-color: #F5F5F5;
   border: 0px solid #56507D;
   color: #2D2D2D;
}
#wb_master-frameResponsiveMenu2 ul ul li:hover > a, #wb_master-frameResponsiveMenu2 ul ul li .active
{
   background-color: #FFFFFF;
   color: #03BEC7;
}
#wb_master-frameResponsiveMenu2 ul ul li i 
{
   margin-right: 0px;
   vertical-align: middle;
}
#wb_master-frameResponsiveMenu2 ul ul li a 
{
   padding-top: 15px;
   padding-right: 20px;
   padding-bottom: 15px;
   text-align: left;
   vertical-align: middle;
}
#wb_master-frameResponsiveMenu2 ul ul ul li 
{
   left: 204px;
   position: relative;
   top: -50px;
}
#wb_master-frameResponsiveMenu2 .arrow-down 
{
   display: inline-block;
   width: 0;
   height: 0;
   margin-left: 2px;
   vertical-align: middle;
   border-top: 4px solid #2D2D2D;
   border-right: 4px solid transparent;
   border-left: 4px solid transparent;
   border-bottom: 0 dotted;
}
#wb_master-frameResponsiveMenu2 .arrow-left 
{
   display: inline-block;
   width: 0;
   height: 0;
   margin-left: 2px;
   vertical-align: middle;
   border-left: 4px solid #2D2D2D;
   border-top: 4px solid transparent;
   border-bottom: 4px solid transparent;
   border-right: 0 dotted;
}
#wb_master-frameResponsiveMenu2 li:hover > a .arrow-down, #wb_master-frameResponsiveMenu2 li .active .arrow-down
{ 
   border-top-color: #03BEC7;
}
#wb_master-frameResponsiveMenu2 ul ul li:hover > a .arrow-left, #wb_master-frameResponsiveMenu2 ul ul li .active .arrow-left
{ 
   border-left-color: #03BEC7;
}
#wb_master-frameResponsiveMenu2 .toggle,[id^=master-frameResponsiveMenu2-submenu]
{
   display: none;
}
@media all and (max-width:1100px) 
{
#wb_master-frameResponsiveMenu2
{
   margin: 0;
   text-align: left;
}
#wb_master-frameResponsiveMenu2 ul li a, #wb_master-frameResponsiveMenu2 .toggle
{
   font-size: 15px;
   font-weight: normal;
   font-style: normal;
   text-decoration: none;
   text-transform: none;
   padding: 15px 20px 15px 20px;
}
#wb_master-frameResponsiveMenu2 .toggle + a
{
   display: none !important;
}
.master-frameResponsiveMenu2 
{
   display: none;
   z-index: 9999;
}
#master-frameResponsiveMenu2 
{
   background-color: transparent;
   display: none;
}
#wb_master-frameResponsiveMenu2 > ul > li > a 
{
   height: auto !important;
   margin: 0;
}
#wb_master-frameResponsiveMenu2 .toggle 
{
   display: block;
   background-color: #F5F5F5;
   color: #2D2D2D;
   padding: 0 20px 0 20px;
   line-height: 51px;
   text-decoration: none;
   border: none;
   position: relative;
}
#wb_master-frameResponsiveMenu2 .toggle:hover
{
   background-color: #F5F5F5;
   color: #03BEC7;
}
[id^=master-frameResponsiveMenu2-submenu]:checked + ul 
{
   display: block !important;
}
#master-frameResponsiveMenu2-title
{
   height: 50px !important;
   line-height: 50px !important;
   text-align: center;
}
#wb_master-frameResponsiveMenu2 ul li 
{
   display: block;
   width: 100% !important;
   text-align: left;
}
#wb_master-frameResponsiveMenu2 ul ul .toggle,
#wb_master-frameResponsiveMenu2 ul ul a 
{
   padding: 0 40px;
}
#wb_master-frameResponsiveMenu2 a:hover,
#wb_master-frameResponsiveMenu2 ul ul ul a 
{
   background-color: #F5F5F5;
   color: #2D2D2D;
}
#wb_master-frameResponsiveMenu2 ul li ul li .toggle,
#wb_master-frameResponsiveMenu2 ul ul a 
{
   background-color: #F5F5F5;
   color: #2D2D2D;
}
#wb_master-frameResponsiveMenu2 ul ul ul a 
{
   padding: 15px 20px 15px 60px;
}
#wb_master-frameResponsiveMenu2 ul li a 
{
   text-align: left;
}
#wb_master-frameResponsiveMenu2 ul li a br 
{
   display: none;
}
#wb_master-frameResponsiveMenu2 ul li i 
{
   margin-right: 0px;
}
#wb_master-frameResponsiveMenu2 ul ul 
{
   float: none;
   position: static;
}
#wb_master-frameResponsiveMenu2 ul ul li:hover > ul,
#wb_master-frameResponsiveMenu2 ul li:hover > ul 
{
   display: none;
}
#wb_master-frameResponsiveMenu2 ul ul li 
{
   display: block;
   width: 100%;
}
#wb_master-frameResponsiveMenu2 ul ul ul li 
{
   position: static;
}
#master-frameResponsiveMenu2-icon 
{
   display: block;
   position: absolute;
   left: 30px;
   top: 13px;
   user-select: none;
}
#master-frameResponsiveMenu2-icon span 
{
   display: block;
   margin-top: 4px;
   height: 2px;
   background-color: #2D2D2D;
   color: #2D2D2D;
   width: 24px;
}
#wb_master-frameResponsiveMenu2 ul li ul li .toggle:hover
{
   background-color: #FFFFFF;
   color: #03BEC7;
}
#wb_master-frameResponsiveMenu2 .toggle .arrow-down 
{
   border-top-color: #2D2D2D;
}
#wb_master-frameResponsiveMenu2 .toggle:hover .arrow-down, #wb_master-frameResponsiveMenu2 li .active .arrow-down
{
   border-top-color: #03BEC7;
}
#wb_master-frameResponsiveMenu2 ul li ul li .toggle .arrow-down 
{
   border-top-color: #2D2D2D;
}
#wb_master-frameResponsiveMenu2 ul li ul li .toggle:hover .arrow-down, #wb_master-frameResponsiveMenu2 ul li ul li .active .arrow-down
{
   border-top-color: #03BEC7;
}
}
#wb_empresa_aire_acondicionadoLayoutGrid1
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   background-color: transparent;
   background-image: url('../wbfx-images/toldo%2dpunto%2drecto%2d2022%2d3.jpg');
   background-repeat: repeat;
   background-position: center center;
   background-attachment: fixed;
   background-position: 50% 0;
   background-size: cover;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   box-sizing: border-box;
   margin: 0;
}
#empresa_aire_acondicionadoLayoutGrid1
{
   box-sizing: border-box;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   padding: 150px 0 150px 0;
   margin-right: auto;
   margin-left: auto;
   max-width: 1200px;
}
#empresa_aire_acondicionadoLayoutGrid1 > .col-1
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 15px;
   padding-left: 15px;
   position: relative;
}
#empresa_aire_acondicionadoLayoutGrid1 > .col-1
{
   flex: 0 0 auto;
}
#empresa_aire_acondicionadoLayoutGrid1 > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 100%;
   max-width: 100%;
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   align-self: stretch;
   align-items: center;
   justify-content: center;
   text-align: center;
}
@media (max-width: 480px)
{
#empresa_aire_acondicionadoLayoutGrid1 > .col-1
{
   flex-basis: 100% !important;
   max-width: 100% !important;
}
}
#empresa_aire_acondicionadoLayoutGrid1-overlay
{
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   background-color: #000000;
   opacity: 0.39;
}
#wb_Heading1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   vertical-align: top;
   margin: 0;
   padding: 0;
   text-align: center;
}
#Heading1
{
   color: #FFFFFF;
   font-family: Lato;
   font-weight: bold;
   font-style: normal;
   font-size: 37px;
   margin: 0;
   text-align: center;
   text-transform: none;
}
#wb_presupuestos_dentistasLayoutGrid1
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   background-color: transparent;
   background-image: none;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   box-sizing: border-box;
   margin: 0;
}
#presupuestos_dentistasLayoutGrid1
{
   box-sizing: border-box;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   padding: 0;
   margin-right: auto;
   margin-left: auto;
   max-width: 1200px;
}
#presupuestos_dentistasLayoutGrid1 > .col-1, #presupuestos_dentistasLayoutGrid1 > .col-2
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 15px;
   padding-left: 15px;
   position: relative;
}
#presupuestos_dentistasLayoutGrid1 > .col-1, #presupuestos_dentistasLayoutGrid1 > .col-2
{
   flex: 0 0 auto;
}
#presupuestos_dentistasLayoutGrid1 > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 66.66666667%;
   max-width: 66.66666667%;
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   align-self: stretch;
   align-items: center;
   justify-content: center;
   text-align: center;
}
#presupuestos_dentistasLayoutGrid1 > .col-2
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 33.33333333%;
   max-width: 33.33333333%;
   display: flex;
   flex-wrap: wrap;
   align-content: flex-start;
   align-self: stretch;
   align-items: flex-start;
   justify-content: center;
   text-align: center;
}
@media (max-width: 480px)
{
#presupuestos_dentistasLayoutGrid1 > .col-1, #presupuestos_dentistasLayoutGrid1 > .col-2
{
   flex-basis: 100% !important;
   max-width: 100% !important;
}
}
#wb_Text6 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 50px 15px 30px 15px;
   text-align: left;
}
#wb_Text6
{
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-size: 29px;
}
#wb_Text6 div
{
   text-align: left;
}
#wb_Text6
{
   display: block;
   margin: 50px 15px 30px 15px;
   box-sizing: border-box;
   width: calc(100% - 30px);
}
#wb_Text7 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0 30px 30px 15px;
   text-align: justify;
}
#wb_Text7 div
{
   text-align: justify;
}
#wb_Text7
{
   display: block;
   margin: 0 30px 30px 15px;
   box-sizing: border-box;
   width: calc(100% - 45px);
}
#wb_Text9 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 60px 0 20px 0 ;
   text-align: left;
}
#wb_Text9
{
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-size: 19px;
}
#wb_Text9 div
{
   text-align: left;
}
#wb_Text9
{
   display: block;
   margin: 60px 0 20px 0 ;
   box-sizing: border-box;
   width: 100%;
}
#wb_presupuestos_dentistasLayoutGrid2
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   background-color: transparent;
   background-image: none;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   box-sizing: border-box;
   margin: 0;
}
#presupuestos_dentistasLayoutGrid2
{
   box-sizing: border-box;
   padding: 0 15px 0 15px;
   margin-right: auto;
   margin-left: auto;
   max-width: 1200px;
}
#presupuestos_dentistasLayoutGrid2 > .row
{
   margin-right: -15px;
   margin-left: -15px;
}
#presupuestos_dentistasLayoutGrid2 > .row > .col-1, #presupuestos_dentistasLayoutGrid2 > .row > .col-2, #presupuestos_dentistasLayoutGrid2 > .row > .col-3, #presupuestos_dentistasLayoutGrid2 > .row > .col-4
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 15px;
   padding-left: 15px;
   position: relative;
}
#presupuestos_dentistasLayoutGrid2 > .row > .col-1, #presupuestos_dentistasLayoutGrid2 > .row > .col-2, #presupuestos_dentistasLayoutGrid2 > .row > .col-3, #presupuestos_dentistasLayoutGrid2 > .row > .col-4
{
   float: left;
}
#presupuestos_dentistasLayoutGrid2 > .row > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   width: 25%;
   text-align: center;
}
#presupuestos_dentistasLayoutGrid2 > .row > .col-2
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   width: 25%;
   text-align: center;
}
#presupuestos_dentistasLayoutGrid2 > .row > .col-3
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   width: 25%;
   text-align: center;
}
#presupuestos_dentistasLayoutGrid2 > .row > .col-4
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   width: 25%;
   text-align: center;
}
#presupuestos_dentistasLayoutGrid2:before,
#presupuestos_dentistasLayoutGrid2:after,
#presupuestos_dentistasLayoutGrid2 .row:before,
#presupuestos_dentistasLayoutGrid2 .row:after
{
   display: table;
   content: " ";
}
#presupuestos_dentistasLayoutGrid2:after,
#presupuestos_dentistasLayoutGrid2 .row:after
{
   clear: both;
}
@media (max-width: 0px)
{
#presupuestos_dentistasLayoutGrid2 > .row > .col-1, #presupuestos_dentistasLayoutGrid2 > .row > .col-2, #presupuestos_dentistasLayoutGrid2 > .row > .col-3, #presupuestos_dentistasLayoutGrid2 > .row > .col-4
{
   float: none;
   width: 100% !important;
}
}
#wb_Image6
{
   margin: 0;
   vertical-align: top;
}
#Image6
{
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   display: inline-block;
   width: 32px;
   height: 32px;
   vertical-align: top;
}
#wb_presupuestos-toldosImage1
{
   margin: 0;
   vertical-align: top;
}
#presupuestos-toldosImage1
{
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   display: inline-block;
   width: 32px;
   height: 32px;
   vertical-align: top;
}
#wb_Image7
{
   margin: 0;
   vertical-align: top;
}
#Image7
{
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   display: inline-block;
   width: 32px;
   height: 32px;
   vertical-align: top;
}
#wb_contactoLayoutGrid4
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   background-color: transparent;
   background-image: none;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   box-sizing: border-box;
   margin: 0;
}
#contactoLayoutGrid4
{
   box-sizing: border-box;
   padding: 0 10px 50px 10px;
   margin-right: auto;
   margin-left: auto;
   max-width: 1200px;
}
#contactoLayoutGrid4 > .row
{
   margin-right: -10px;
   margin-left: -10px;
}
#contactoLayoutGrid4 > .row > .col-1
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 10px;
   padding-left: 10px;
   position: relative;
}
#contactoLayoutGrid4 > .row > .col-1
{
   float: left;
}
#contactoLayoutGrid4 > .row > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   width: 100%;
   text-align: center;
}
#contactoLayoutGrid4:before,
#contactoLayoutGrid4:after,
#contactoLayoutGrid4 .row:before,
#contactoLayoutGrid4 .row:after
{
   display: table;
   content: " ";
}
#contactoLayoutGrid4:after,
#contactoLayoutGrid4 .row:after
{
   clear: both;
}
@media (max-width: 480px)
{
#contactoLayoutGrid4 > .row > .col-1
{
   float: none;
   width: 100% !important;
}
}
#wb_Text2 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 30px 0 10px 0;
   margin: 0;
   text-align: center;
}
#wb_Text2 div
{
   text-align: center;
}
#wb_Text2
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#presupuestos_dentistasEditbox1
{
   box-sizing: border-box;
   line-height: 28px;
   margin: 0;
   border: 1px solid #96B831;
   border-radius: 0px;
   background-color: transparent;
   background-image: none;
   color: #696969;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 17px;
   text-align: left;
   padding: 0;
}
#presupuestos_dentistasEditbox1:focus
{
   border-color: #96B831;
   box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075), 0px 0px 8px rgba(150,184,49,0.60);
   outline: 0;
}
#wb_presupuestos_dentistasText1 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 30px 0 10px 0;
   margin: 0;
   text-align: center;
}
#wb_presupuestos_dentistasText1 div
{
   text-align: center;
}
#wb_presupuestos_dentistasText1
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#Editbox6
{
   box-sizing: border-box;
   line-height: 28px;
   margin: 0;
   border: 1px solid #96B831;
   border-radius: 0px;
   background-color: transparent;
   background-image: none;
   color: #696969;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 17px;
   text-align: left;
   padding: 0;
}
#Editbox6:focus
{
   border-color: #96B831;
   box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075), 0px 0px 8px rgba(150,184,49,0.60);
   outline: 0;
}
#wb_Text10 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 30px 0 10px 0;
   margin: 0;
   text-align: center;
}
#wb_Text10 div
{
   text-align: center;
}
#wb_Text10
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#Editbox7
{
   box-sizing: border-box;
   line-height: 28px;
   margin: 0;
   border: 1px solid #96B831;
   border-radius: 0px;
   background-color: transparent;
   background-image: none;
   color: #696969;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 17px;
   text-align: left;
   padding: 0;
}
#Editbox7:focus
{
   border-color: #96B831;
   box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075), 0px 0px 8px rgba(150,184,49,0.60);
   outline: 0;
}
#wb_Text4 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 30px 0 10px 0;
   margin: 0;
   text-align: center;
}
#wb_Text4 div
{
   text-align: center;
}
#wb_Text4
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#Editbox3
{
   box-sizing: border-box;
   line-height: 28px;
   margin: 0;
   border: 1px solid #96B831;
   border-radius: 0px;
   background-color: transparent;
   background-image: none;
   color: #696969;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 17px;
   text-align: left;
   padding: 0;
}
#Editbox3:focus
{
   border-color: #96B831;
   box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075), 0px 0px 8px rgba(150,184,49,0.60);
   outline: 0;
}
#wb_Text11 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 30px 0 10px 0;
   margin: 0;
   text-align: center;
}
#wb_Text11 div
{
   text-align: center;
}
#wb_Text11
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#Combobox1
{
   border: 1px solid #96B831;
   border-radius: 4px;
   background-color: #FFFFFF;
   background-image: none;
   color: #000000;
   font-family: Raleway;
   font-weight: normal;
   font-style: normal;
   font-size: 13px;
   margin: 0;
   text-align: left;
   padding: 0;
   box-sizing: border-box;
}
#Combobox1:focus
{
   border-color: #96B831;
   box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075), 0px 0px 8px rgba(150,184,49,0.60);
   outline: 0;
}
#wb_presupuestos-toldosText1 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 30px 0 10px 0;
   margin: 0;
   text-align: center;
}
#wb_presupuestos-toldosText1 div
{
   text-align: center;
}
#wb_presupuestos-toldosText1
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#TextArea1
{
   box-sizing: border-box;
   border: 1px solid #96B831;
   border-radius: 0px;
   background-color: transparent;
   background-image: none;
   color: #000000;
   font-family: Raleway;
   font-weight: normal;
   font-style: normal;
   font-size: 17px;
   text-align: left;
   padding: 0 0 25px 0;
   margin: 0;
   overflow: auto;
   resize: none;
}
#TextArea1:focus
{
   border-color: #96B831;
   box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075), 0px 0px 8px rgba(150,184,49,0.60);
   outline: 0;
}
#wb_presupuestos-toldosText2 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 30px 0 15px 0;
   margin: 0;
   text-align: center;
}
#wb_presupuestos-toldosText2
{
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-size: 15px;
}
#wb_presupuestos-toldosText2 div
{
   text-align: center;
}
#wb_presupuestos-toldosText2
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_presupuestos_dentistasCheckbox1
{
   margin: 25px 0 0 0 ;
}
#wb_presupuestos_dentistasCheckbox1
{
   position: relative;
}
#wb_presupuestos_dentistasCheckbox1, #wb_presupuestos_dentistasCheckbox1 *, #wb_presupuestos_dentistasCheckbox1 *::before, #wb_presupuestos_dentistasCheckbox1 *::after
{
   box-sizing: border-box;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']
{
   position: absolute;
   padding: 0;
   margin: 0;
   opacity: 0;
   z-index: 1;
   width: 28px;
   height: 28px;
   left: 0;
   top: 0;
}
#wb_presupuestos_dentistasCheckbox1 label
{
   display: inline-block;
   vertical-align: middle;
   position: absolute;
   left: 0;
   top: 0;
   width: 0;
   height: 0;
   padding: 0;
}
#wb_presupuestos_dentistasCheckbox1 label::before
{
   content: "";
   display: inline-block;
   position: absolute;
   width: 28px;
   height: 28px;
   left: 0;
   top: 0;
   background-color: #FFFFFF;
   border: 2px solid #800000;
   border-radius: 4px;
}
#wb_presupuestos_dentistasCheckbox1 label::after
{
   display: inline-block;
   position: absolute;
   width: 28px;
   height: 28px;
   left: 0;
   top: 0;
   visibility: visible;
   padding: 0;
   text-align: center;
   line-height: 28px;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']:checked + label::after
{
   content: " ";
   background: url('data:image/svg+xml,%3csvg%20style%3d%22fill:%23FFFFFF%22%20viewBox%3d%220%200%20112%20112%22%20version%3d%221.1%22%20xmlns%3d%22http://www.w3.org/2000/svg%22%3e%0d%0a%20%20%20%3cpath%20d%3d%22M103%2029%20C105%2030%2c%20105%2032%2c%20105%2033%20C105%2035%2c%20105%2036%2c%20103%2038%20L58%2083%20L50%2091%20C48%2093%2c%2047%2093%2c%2045%2093%20C44%2093%2c%2042%2093%2c%2041%2091%20L33%2083%20L10%2060%20C9%2059%2c%208%2058%2c%208%2056%20C8%2054%2c%209%2053%2c%2010%2052%20L18%2043%20C20%2042%2c%2021%2041%2c%2023%2041%20C24%2041%2c%2026%2042%2c%2027%2043%20L45%2062%20L86%2021%20C88%2019%2c%2089%2019%2c%2091%2019%20C92%2019%2c%2094%2019%2c%2095%2021%22/%3e%0d%0a%3c/svg%3e%0d%0a') no-repeat center center;
   background-size: 80% 80%;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']:checked + label::before
{
   background-color: #3370B7;
   background-image: none;
   border-color: #3370B7;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']:focus + label::before
{
   outline: thin dotted;
}
#wb_presupuestos-control-plagasCaptcha1 span
{
   display: block;
   overflow: hidden;
   padding: 0 0px 0 5px;
}
#presupuestos-control-plagasCaptcha1
{
   box-sizing: border-box;
   margin: 0;
   border: 1px solid #CCCCCC;
   border-radius: 4px;
   background-color: #FFFFFF;
   background-image: none;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-style: normal;
   font-size: 13px;
   text-align: left;
   padding: 4px 4px 4px 4px;
}
#presupuestos-control-plagasCaptcha1:focus
{
   outline: 0;
}
#presupuestos_dentistasButton1
{
   border: 1px solid #96B831;
   border-radius: 30px;
   background-color: #000000;
   background-image: none;
   color: #FFFFFF;
   font-family: Lato;
   font-weight: bold;
   font-style: normal;
   font-size: 15px;
   padding: 0;
   text-align: center;
   -webkit-appearance: none;
   margin: 30px 0 0 0 ;
}
#presupuestos_dentistasButton1:focus
{
   outline: 0;
}
#wb_contactoCard1
{
   position: relative;
   display: flex;
   flex-direction: column;
   box-sizing: border-box;
   margin: 0;
   background-color: transparent;
   background-image: none;
   border: 0px solid #DEDEDE;
   border-radius: 0px;
   text-align: left;
}
#contactoCard1-card-body
{
   padding: 0;
   flex: 1 1 auto;
   font-size: 0;
}
#contactoCard1-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
}
#contactoCard1-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#contactoCard1-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#contactoCard1-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 15px;
   text-align: left;
}
#wb_presupuestos_dentistasCard1
{
   position: relative;
   display: flex;
   flex-direction: column;
   box-sizing: border-box;
   margin: 0;
   background-color: transparent;
   background-image: none;
   border: 0px solid #DEDEDE;
   border-radius: 0px;
   text-align: left;
}
#presupuestos_dentistasCard1-card-body
{
   padding: 0;
   flex: 1 1 auto;
   font-size: 0;
}
#presupuestos_dentistasCard1-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
   text-align: left;
}
#presupuestos_dentistasCard1-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#presupuestos_dentistasCard1-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#presupuestos_dentistasCard1-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 15px;
   text-align: left;
}
#wb_presupuestos-control-plagasCard1
{
   position: relative;
   display: flex;
   flex-direction: column;
   box-sizing: border-box;
   margin: 0;
   background-color: transparent;
   background-image: none;
   border: 0px solid #DEDEDE;
   border-radius: 0px;
   text-align: left;
}
#presupuestos-control-plagasCard1-card-body
{
   padding: 0;
   flex: 1 1 auto;
   font-size: 0;
}
#presupuestos-control-plagasCard1-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
   text-align: left;
}
#presupuestos-control-plagasCard1-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#presupuestos-control-plagasCard1-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#presupuestos-control-plagasCard1-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: Lato;
   font-weight: normal;
   font-style: normal;
   font-size: 19px;
   text-align: left;
}
#wb_presupuestos_dentistasCard3
{
   position: relative;
   display: flex;
   flex-direction: column;
   box-sizing: border-box;
   margin: 0;
   background-color: transparent;
   background-image: none;
   border: 0px solid #DEDEDE;
   border-radius: 0px;
   text-align: left;
}
#presupuestos_dentistasCard3-card-body
{
   padding: 0;
   flex: 1 1 auto;
   font-size: 0;
}
#presupuestos_dentistasCard3-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
}
#presupuestos_dentistasCard3-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#presupuestos_dentistasCard3-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#presupuestos_dentistasCard3-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 15px;
   text-align: left;
}
#wb_venta_aire_acondicionadoLayoutGrid4
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   background-color: transparent;
   background-image: url('../wbfx-images/toldo%2dtelon%2d2022%2d4.jpg');
   background-repeat: repeat;
   background-position: center center;
   background-attachment: fixed;
   background-position: 50% 0;
   background-size: cover;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   box-sizing: border-box;
   margin: 0;
}
#venta_aire_acondicionadoLayoutGrid4
{
   box-sizing: border-box;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   padding: 70px 0 70px 0;
   margin-right: auto;
   margin-left: auto;
   max-width: 1200px;
}
#venta_aire_acondicionadoLayoutGrid4 > .col-1
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 15px;
   padding-left: 15px;
   position: relative;
}
#venta_aire_acondicionadoLayoutGrid4 > .col-1
{
   flex: 0 0 auto;
}
#venta_aire_acondicionadoLayoutGrid4 > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 100%;
   max-width: 100%;
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   align-self: stretch;
   align-items: center;
   justify-content: center;
   text-align: center;
}
@media (max-width: 480px)
{
#venta_aire_acondicionadoLayoutGrid4 > .col-1
{
   flex-basis: 100% !important;
   max-width: 100% !important;
}
}
#venta_aire_acondicionadoLayoutGrid4-overlay
{
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   background-color: #000000;
   opacity: 0.45;
}
#wb_venta_aire_acondicionadoHeading1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   vertical-align: top;
   margin: 0;
   padding: 20px 0 0 0;
   text-align: center;
}
#venta_aire_acondicionadoHeading1
{
   color: #FFFFFF;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 35px;
   margin: 0;
   text-align: center;
   text-transform: none;
}
#wb_Text37 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 20px 0 20px 0;
   margin: 0;
   text-align: center;
}
#wb_Text37 div
{
   text-align: center;
}
#wb_Text37
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_Shape15 a img
{
   position: relative;
   left: 0;
}
#wb_Shape15 .default
{
   position: absolute;
   left: 0;
}
#wb_Shape15 a .hover
{
   visibility: hidden;
}
#wb_Shape15 a:hover .hover
{
   visibility: visible;
}
#wb_Shape15 a:hover .default
{
   visibility: hidden;
}
#Shape15
{
   border-width: 0;
   vertical-align: top;
}
#wb_Shape15
{
   margin: 0;
   vertical-align: top;
}
#wb_master-frameLayoutGrid3
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   background-color: #000000;
   background-image: none;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   box-sizing: border-box;
   margin: 0;
}
#master-frameLayoutGrid3
{
   box-sizing: border-box;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   padding: 0 0 20px 0;
   margin-right: auto;
   margin-left: auto;
   max-width: 1200px;
}
#master-frameLayoutGrid3 > .col-1, #master-frameLayoutGrid3 > .col-2, #master-frameLayoutGrid3 > .col-3
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 15px;
   padding-left: 15px;
   position: relative;
}
#master-frameLayoutGrid3 > .col-1, #master-frameLayoutGrid3 > .col-2, #master-frameLayoutGrid3 > .col-3
{
   flex: 0 0 auto;
}
#master-frameLayoutGrid3 > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 33.33333333%;
   max-width: 33.33333333%;
   display: flex;
   flex-wrap: wrap;
   align-content: flex-start;
   align-self: stretch;
   align-items: flex-start;
   justify-content: flex-start;
   text-align: left;
}
#master-frameLayoutGrid3 > .col-2
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 41.66666667%;
   max-width: 41.66666667%;
   display: flex;
   flex-wrap: wrap;
   align-content: flex-start;
   align-self: stretch;
   align-items: flex-start;
   justify-content: flex-start;
   text-align: left;
}
#master-frameLayoutGrid3 > .col-3
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 25%;
   max-width: 25%;
   display: flex;
   flex-wrap: wrap;
   align-content: flex-start;
   align-self: stretch;
   align-items: flex-start;
   justify-content: flex-start;
   text-align: left;
}
@media (max-width: 800px)
{
#master-frameLayoutGrid3 > .col-1, #master-frameLayoutGrid3 > .col-2, #master-frameLayoutGrid3 > .col-3
{
   flex-basis: 100% !important;
   max-width: 100% !important;
}
}
#wb_Image26
{
   margin: 30px 0 10px 0 ;
   vertical-align: top;
}
#Image26
{
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   display: inline-block;
   width: 24px;
   height: 24px;
   vertical-align: top;
}
#wb_Text48 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text48 div
{
   text-align: left;
}
#wb_Text48
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_Text49 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 10px 0 20px 0;
   margin: 0;
   text-align: justify;
}
#wb_Text49 div
{
   text-align: justify;
}
#wb_Text49
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_Shape13 a img
{
   position: relative;
   left: 0;
}
#wb_Shape13 .default
{
   position: absolute;
   left: 0;
}
#wb_Shape13 a .hover
{
   visibility: hidden;
}
#wb_Shape13 a:hover .hover
{
   visibility: visible;
}
#wb_Shape13 a:hover .default
{
   visibility: hidden;
}
#Shape13
{
   border-width: 0;
   vertical-align: top;
}
#wb_Shape13
{
   margin: 0 0 15px 0 ;
   vertical-align: top;
}
#wb_Text73 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_Text73 div
{
   text-align: left;
}
#wb_Text73
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_Text50 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0 0 20px 0 ;
   text-align: left;
}
#wb_Text50 div
{
   text-align: left;
}
#wb_Text50
{
   display: block;
   margin: 0 0 20px 0 ;
   box-sizing: border-box;
   width: 100%;
}
#wb_Image27
{
   margin: 30px 0 10px 0 ;
   vertical-align: top;
}
#Image27
{
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   display: inline-block;
   width: 24px;
   height: 24px;
   vertical-align: top;
}
#wb_Image24
{
   margin: 30px 0 10px 0 ;
   vertical-align: top;
}
#Image24
{
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   display: inline-block;
   width: 24px;
   height: 24px;
   vertical-align: top;
}
#wb_Text60 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text60 div
{
   text-align: left;
}
#wb_Text60
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_Image25
{
   margin: 30px 0 10px 0 ;
   vertical-align: top;
}
#Image25
{
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   display: inline-block;
   width: 24px;
   height: 24px;
   vertical-align: top;
}
#wb_Text58 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text58 div
{
   text-align: left;
}
#wb_Text58
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_Image17
{
   margin: 30px 0 10px 0 ;
   vertical-align: top;
}
#Image17
{
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   display: inline-block;
   width: 24px;
   height: 24px;
   vertical-align: top;
}
#wb_Text57 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 20px 0;
   margin: 0;
   text-align: left;
}
#wb_Text57 div
{
   text-align: left;
}
#wb_Text57
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameLayoutGrid6
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   background-color: #000000;
   background-image: none;
   border-top-width: 1px;
   border-right-width: 0px;
   border-bottom-width: 1px;
   border-left-width: 0px;
   border-top-style: solid;
   border-right-style: solid;
   border-bottom-style: solid;
   border-left-style: solid;
   border-top-color: #96B831;
   border-right-color: #96B831;
   border-bottom-color: #96B831;
   border-left-color: #96B831;
   box-sizing: border-box;
   margin: 0;
}
#master-frameLayoutGrid6
{
   box-sizing: border-box;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   padding: 10px 0 10px 0;
   margin-right: auto;
   margin-left: auto;
   max-width: 1200px;
}
#master-frameLayoutGrid6 > .col-1, #master-frameLayoutGrid6 > .col-2, #master-frameLayoutGrid6 > .col-3, #master-frameLayoutGrid6 > .col-4
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 15px;
   padding-left: 15px;
   position: relative;
}
#master-frameLayoutGrid6 > .col-1, #master-frameLayoutGrid6 > .col-2, #master-frameLayoutGrid6 > .col-3, #master-frameLayoutGrid6 > .col-4
{
   flex: 0 0 auto;
}
#master-frameLayoutGrid6 > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 25%;
   max-width: 25%;
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   align-self: stretch;
   align-items: center;
   justify-content: center;
   text-align: center;
}
#master-frameLayoutGrid6 > .col-2
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 25%;
   max-width: 25%;
   display: flex;
   flex-wrap: wrap;
   align-content: center;
   align-self: stretch;
   align-items: center;
   justify-content: center;
   text-align: center;
}
#master-frameLayoutGrid6 > .col-3
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 25%;
   max-width: 25%;
   display: flex;
   flex-wrap: wrap;
   align-content: flex-start;
   align-self: stretch;
   align-items: flex-start;
   justify-content: flex-start;
   text-align: left;
}
#master-frameLayoutGrid6 > .col-4
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 25%;
   max-width: 25%;
   display: flex;
   flex-wrap: wrap;
   align-content: flex-start;
   align-self: stretch;
   align-items: flex-start;
   justify-content: flex-start;
   text-align: left;
}
@media (max-width: 800px)
{
#master-frameLayoutGrid6 > .col-1, #master-frameLayoutGrid6 > .col-2, #master-frameLayoutGrid6 > .col-3, #master-frameLayoutGrid6 > .col-4
{
   flex-basis: 100% !important;
   max-width: 100% !important;
}
}
#wb_master-frameImage2
{
   margin: 0;
   vertical-align: top;
}
#master-frameImage2
{
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   padding: 0;
   display: block;
   width: 100%;
   height: auto;
   max-width: 320px;
   margin-left: auto;
   margin-right: auto;
   vertical-align: top;
}
#wb_master-frameImage3
{
   margin: 30px 0 10px 0 ;
   vertical-align: top;
}
#master-frameImage3
{
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   display: inline-block;
   width: 24px;
   height: 24px;
   vertical-align: top;
}
#wb_master-frameText2 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText2 div
{
   text-align: left;
}
#wb_master-frameText2
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText26 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText26 div
{
   text-align: left;
}
#wb_master-frameText26
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText27 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText27 div
{
   text-align: left;
}
#wb_master-frameText27
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText28 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText28 div
{
   text-align: left;
}
#wb_master-frameText28
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameLayoutGrid7
{
   clear: both;
   position: relative;
   table-layout: fixed;
   display: table;
   text-align: center;
   width: 100%;
   background-color: #000000;
   background-image: none;
   border: 0px solid #CCCCCC;
   border-radius: 0px;
   box-sizing: border-box;
   margin: 0;
}
#master-frameLayoutGrid7
{
   box-sizing: border-box;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   padding: 10px 0 10px 0;
   margin-right: auto;
   margin-left: auto;
   max-width: 1200px;
}
#master-frameLayoutGrid7 > .col-1, #master-frameLayoutGrid7 > .col-2, #master-frameLayoutGrid7 > .col-3
{
   box-sizing: border-box;
   font-size: 0;
   min-height: 1px;
   padding-right: 15px;
   padding-left: 15px;
   position: relative;
}
#master-frameLayoutGrid7 > .col-1, #master-frameLayoutGrid7 > .col-2, #master-frameLayoutGrid7 > .col-3
{
   flex: 0 0 auto;
}
#master-frameLayoutGrid7 > .col-1
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 33.33333333%;
   max-width: 33.33333333%;
   display: flex;
   flex-wrap: wrap;
   align-content: flex-start;
   align-self: stretch;
   align-items: flex-start;
   justify-content: flex-start;
   text-align: left;
}
#master-frameLayoutGrid7 > .col-2
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 41.66666667%;
   max-width: 41.66666667%;
   display: flex;
   flex-wrap: wrap;
   align-content: flex-start;
   align-self: stretch;
   align-items: flex-start;
   justify-content: flex-start;
   text-align: left;
}
#master-frameLayoutGrid7 > .col-3
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #FFFFFF;
   border-radius: 0px;
   flex-basis: 25%;
   max-width: 25%;
   display: flex;
   flex-wrap: wrap;
   align-content: flex-start;
   align-self: stretch;
   align-items: flex-start;
   justify-content: flex-start;
   text-align: left;
}
@media (max-width: 800px)
{
#master-frameLayoutGrid7 > .col-1, #master-frameLayoutGrid7 > .col-2, #master-frameLayoutGrid7 > .col-3
{
   flex-basis: 100% !important;
   max-width: 100% !important;
}
}
#wb_master-frameText3 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 5px 0 5px 0;
   margin: 0;
   text-align: center;
}
#wb_master-frameText3 div
{
   text-align: center;
}
#wb_master-frameText3
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText4 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 5px 0 5px 0;
   margin: 0;
   text-align: center;
}
#wb_master-frameText4 div
{
   text-align: center;
}
#wb_master-frameText4
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText5 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 5px 0 5px 0;
   margin: 0;
   text-align: center;
}
#wb_master-frameText5 div
{
   text-align: center;
}
#wb_master-frameText5
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText6 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText6 div
{
   text-align: left;
}
#wb_master-frameText6
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText9 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText9 div
{
   text-align: left;
}
#wb_master-frameText9
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText23 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText23 div
{
   text-align: left;
}
#wb_master-frameText23
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText29 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText29 div
{
   text-align: left;
}
#wb_master-frameText29
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText31 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText31 div
{
   text-align: left;
}
#wb_master-frameText31
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText34 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText34 div
{
   text-align: left;
}
#wb_master-frameText34
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText36 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText36 div
{
   text-align: left;
}
#wb_master-frameText36
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText39 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText39 div
{
   text-align: left;
}
#wb_master-frameText39
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText13 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText13 div
{
   text-align: left;
}
#wb_master-frameText13
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText14 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText14 div
{
   text-align: left;
}
#wb_master-frameText14
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText17 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText17 div
{
   text-align: left;
}
#wb_master-frameText17
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText21 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText21 div
{
   text-align: left;
}
#wb_master-frameText21
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText22 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText22 div
{
   text-align: left;
}
#wb_master-frameText22
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText43 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText43 div
{
   text-align: left;
}
#wb_master-frameText43
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText47 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText47 div
{
   text-align: left;
}
#wb_master-frameText47
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText48 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText48 div
{
   text-align: left;
}
#wb_master-frameText48
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText51 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText51 div
{
   text-align: left;
}
#wb_master-frameText51
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText55 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText55 div
{
   text-align: left;
}
#wb_master-frameText55
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText56 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText56 div
{
   text-align: left;
}
#wb_master-frameText56
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#wb_master-frameText59 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0 0 7px 0;
   margin: 0;
   text-align: left;
}
#wb_master-frameText59 div
{
   text-align: left;
}
#wb_master-frameText59
{
   display: block;
   margin: 0;
   box-sizing: border-box;
   width: 100%;
}
#TextArea1
{
   display: block;
   width: 100%;
   height: 169px;
   z-index: 25;
}
#wb_presupuestos-control-plagasCaptcha1
{
   display: block;
   width: 100%;
   z-index: 28;
}
#Editbox6
{
   display: block;
   width: 100%;
   height: 30px;
   z-index: 17;
}
#wb_master-frameResponsiveMenu2
{
   display: block;
   width: 100%;
   z-index: 12;
}
#wbfx_flecha_arriba
{
   position: fixed;
   text-align: left;
   left: auto;
   right: 30px;
   top: auto;
   bottom: 30px;
   width: 45px;
   height: 45px;
   z-index: 108;
}
#wb_Image25
{
   display: inline-block;
   width: 24px;
   height: 24px;
   z-index: 78;
}
#wb_Image24
{
   display: inline-block;
   width: 24px;
   height: 24px;
   z-index: 76;
}
#wb_Image27
{
   display: inline-block;
   width: 24px;
   height: 24px;
   z-index: 68;
}
#wb_Image26
{
   display: inline-block;
   width: 24px;
   height: 24px;
   z-index: 64;
}
#Editbox7
{
   display: block;
   width: 100%;
   height: 30px;
   z-index: 19;
}
#master-frameLine4
{
   display: inline-block;
   width: 10px;
   z-index: 7;
}
#wb_Image3
{
   display: inline-block;
   width: 32px;
   height: 32px;
   z-index: 4;
}
#wb_Image4
{
   display: inline-block;
   width: 32px;
   height: 32px;
   z-index: 6;
}
#wb_master-frameImage3
{
   display: inline-block;
   width: 24px;
   height: 24px;
   z-index: 74;
}
#Editbox3
{
   display: block;
   width: 100%;
   height: 30px;
   z-index: 21;
}
#wb_master-frameImage2
{
   display: block;
   width: 100%;
   height: auto;
   z-index: 8;
}
#wb_master-frameImage1
{
   display: inline-block;
   width: 24px;
   height: 24px;
   z-index: 0;
}
#Shape13
{
   width: 202px;
   height: 46px;
}
#wb_Image6
{
   display: inline-block;
   width: 32px;
   height: 32px;
   z-index: 33;
}
#wb_indexFontAwesomeIcon1
{
   position: absolute;
   left: 5px;
   top: 5px;
   width: 35px;
   height: 35px;
   text-align: center;
   z-index: 9;
}
#wb_venta_aire_acondicionadoHeading1
{
   display: block;
   width: 100%;
   z-index: 61;
}
#wb_presupuestos-control-plagasCard1
{
   display: flex;
   width: 100%;
   z-index: 40;
}
#wb_Image7
{
   display: inline-block;
   width: 32px;
   height: 32px;
   z-index: 35;
}
#wb_presupuestos-toldosImage1
{
   display: inline-block;
   width: 32px;
   height: 32px;
   z-index: 34;
}
#presupuestos_dentistasButton1
{
   display: block;
   width: 100%;
   height: 68px;
   z-index: 29;
}
#wb_Shape13
{
   display: inline-block;
   width: 202px;
   height: 46px;
   z-index: 67;
   position: relative;
}
#wb_Shape15
{
   display: inline-block;
   width: 210px;
   height: 44px;
   opacity: 0.80;
   z-index: 63;
   position: relative;
}
#wb_contactoCard1
{
   display: flex;
   width: 100%;
   z-index: 38;
}
#presupuestos_dentistasEditbox1
{
   display: block;
   width: 100%;
   height: 30px;
   z-index: 15;
}
#Shape15
{
   width: 210px;
   height: 44px;
}
#wb_Heading1
{
   display: block;
   width: 100%;
   z-index: 13;
}
#master-frameLine3
{
   display: inline-block;
   width: 10px;
   z-index: 5;
}
#wb_Image17
{
   display: inline-block;
   width: 24px;
   height: 24px;
   z-index: 80;
}
#wb_presupuestos_dentistasCard3
{
   display: flex;
   width: 100%;
   z-index: 41;
}
#wb_presupuestos_dentistasCard1
{
   display: flex;
   width: 100%;
   z-index: 39;
}
#presupuestos_dentistasCheckbox1
{
   display: inline-block;
}
#wb_presupuestos_dentistasCheckbox1
{
   display: inline-block;
   width: 28px;
   height: 30px;
   z-index: 26;
}
#Combobox1
{
   display: block;
   width: 100%;
   height: 30px;
   z-index: 23;
}
@media only screen and (min-width: 1024px) and (max-width: 1199px)
{
body
{
   background-color: #FFFFFF;
   background-image: none;
}
#wb_top
{
   visibility: visible;
   display: table;
}
#wb_top
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#top
{
   height: auto;
   padding: 5px 0 5px 0;
}
#wb_master-frameLayoutGrid2
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid2
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid2
{
   height: auto;
   padding: 0;
}
#master-frameExtension1
{
}
#wbfx_flecha_arriba
{
   width: 45px;
   height: 45px;
   visibility: visible;
   display: block;
}
#wb_indexFontAwesomeIcon1
{
   left: 5px;
   top: 5px;
   width: 35px;
   height: 35px;
   visibility: visible;
   display: inline;
   margin: 0;
   padding: 0;
}
#indexFontAwesomeIcon1
{
   width: 35px;
   height: 35px;
}
#indexFontAwesomeIcon1 i
{
   line-height: 35px;
   font-size: 35px;
   width: 29px;
}
#wb_master-frameLayoutGrid5
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid5
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid5
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameText1
{
   visibility: visible;
   display: block;
}
#wb_master-frameText1
{
   margin: 0;
   padding: 0;
}
#wb_Text3
{
   visibility: visible;
   display: block;
}
#wb_Text3
{
   margin: 0;
   padding: 10px 0 5px 0;
}
#wb_Image3
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image3
{
   width: 24px;
   height: 24px;
}
#wb_Image4
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image4
{
   width: 24px;
   height: 24px;
}
#master-frameLine3
{
   width: 10px;
   height: 20px;
   visibility: visible;
   display: inline-block;
   margin: 0;
}
#master-frameLine3
{
   border-color: transparent;
   border-bottom-width: 20px;
}
#master-frameLine4
{
   width: 10px;
   height: 23px;
   visibility: visible;
   display: inline-block;
   margin: 0;
}
#master-frameLine4
{
   border-color: transparent;
   border-bottom-width: 23px;
}
#wb_master-frameImage1
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#master-frameImage1
{
   width: 24px;
   height: 24px;
}
#wb_master-frameLayoutGrid1
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid1
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid1
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameResponsiveMenu2
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   text-align: center;
}
#wb_master-frameResponsiveMenu2 ul li a
{
   font-family: "Raleway";
   font-weight: 600;
   font-size: 15px;
   text-decoration: none;
}
#wb_master-frameResponsiveMenu2 ul li a, #wb_master-frameResponsiveMenu2 .toggle
{
   font-family: "Raleway";
   font-weight: 600;
   font-size: 15px;
}
#master-frameResponsiveMenu2
{
   height: 44px;
}
#wb_master-frameResponsiveMenu2 ul ul
{
   top: 44px;
}
#wb_master-frameResponsiveMenu2 ul ul ul li
{
   left: 204px;
   top: -44px;
}
#wb_master-frameResponsiveMenu2 > ul > li > a
{
   height: 14px;
}
#wb_master-frameResponsiveMenu2 ul ul li
{
   width: 204px;
}
#wb_empresa_aire_acondicionadoLayoutGrid1
{
   visibility: visible;
   display: table;
   background-color: transparent;
   background-image: url('../wbfx-images/toldo%2dpunto%2drecto%2d2022%2d3.jpg');
   background-repeat: repeat;
   background-position: center center;
   background-attachment: fixed;
   background-position: 50% 0;
   background-size: cover;
}
#wb_empresa_aire_acondicionadoLayoutGrid1
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#empresa_aire_acondicionadoLayoutGrid1
{
   height: auto;
   padding: 150px 0 150px 0;
}
#wb_Heading1
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
}
#wb_presupuestos_dentistasLayoutGrid1
{
   visibility: visible;
   display: table;
}
#wb_presupuestos_dentistasLayoutGrid1
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#presupuestos_dentistasLayoutGrid1
{
   height: auto;
   padding: 0;
}
#wb_Text6
{
   visibility: visible;
   display: block;
}
#wb_Text6
{
   font-size: 43px;
   margin: 50px 15px 30px 15px;
   padding: 0;
   text-align: left;
}
#wb_Text7
{
   visibility: visible;
   display: block;
}
#wb_Text7
{
   margin: 0 30px 30px 15px;
   padding: 0;
}
#wb_Text9
{
   visibility: visible;
   display: block;
}
#wb_Text9
{
   font-size: 17px;
   margin: 60px 0 20px 0 ;
   padding: 0;
   text-align: left;
}
#wb_presupuestos_dentistasLayoutGrid2
{
   visibility: visible;
   display: table;
}
#wb_presupuestos_dentistasLayoutGrid2
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#presupuestos_dentistasLayoutGrid2
{
   height: auto;
   padding: 0 15px 0 15px;
}
#presupuestos_dentistasLayoutGrid2 .row
{
   margin-right: -15px;
   margin-left: -15px;
}
#wb_Image6
{
   width: 32px;
   height: 32px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image6
{
   width: 32px;
   height: 32px;
}
#wb_presupuestos-toldosImage1
{
   width: 32px;
   height: 32px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#presupuestos-toldosImage1
{
   width: 32px;
   height: 32px;
}
#wb_Image7
{
   width: 32px;
   height: 32px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image7
{
   width: 32px;
   height: 32px;
}
#wb_contactoLayoutGrid4
{
   visibility: visible;
   display: table;
}
#wb_contactoLayoutGrid4
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#contactoLayoutGrid4
{
   height: auto;
   padding: 0 10px 50px 10px;
}
#contactoLayoutGrid4 .row
{
   margin-right: -10px;
   margin-left: -10px;
}
#wb_Text2
{
   visibility: visible;
   display: block;
}
#wb_Text2
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#presupuestos_dentistasEditbox1
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#presupuestos_dentistasEditbox1
{
   line-height: 28px;
}
#wb_presupuestos_dentistasText1
{
   visibility: visible;
   display: block;
}
#wb_presupuestos_dentistasText1
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Editbox6
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#Editbox6
{
   line-height: 28px;
}
#wb_Text10
{
   visibility: visible;
   display: block;
}
#wb_Text10
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Editbox7
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#Editbox7
{
   line-height: 28px;
}
#wb_Text4
{
   visibility: visible;
   display: block;
}
#wb_Text4
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Editbox3
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#Editbox3
{
   line-height: 28px;
}
#wb_Text11
{
   visibility: visible;
   display: block;
}
#wb_Text11
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Combobox1
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
}
#wb_presupuestos-toldosText1
{
   visibility: visible;
   display: block;
}
#wb_presupuestos-toldosText1
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#TextArea1
{
   width: 100%;
   height: 151px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0 0 25px 0;
   text-align: left;
}
#wb_presupuestos-toldosText2
{
   visibility: visible;
   display: block;
}
#wb_presupuestos-toldosText2
{
   font-size: 15px;
   margin: 0;
   padding: 30px 0 10px 0;
   text-align: center;
}
#wb_presupuestos_dentistasCheckbox1
{
   width: 20px;
   height: 20px;
   visibility: visible;
   display: inline-block;
   margin: 25px 0 0 0 ;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']
{
   width: 20px;
   height: 20px;
}
#wb_presupuestos_dentistasCheckbox1 label::before
{
   width: 20px;
   height: 20px;
   border-color: #800000;
}
#wb_presupuestos_dentistasCheckbox1 label::after
{
   width: 20px;
   height: 20px;
   line-height: 20px;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']:checked + label::after
{
   color: #FFFFFF;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']:checked + label::before
{
   background-color: #3370B7;
   background-image: none;
   border-color: #3370B7;
}
#wb_presupuestos-control-plagasCaptcha1
{
   width: 100%;
   height: 100px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 4px 4px 4px 4px;
   text-align: left;
}
#presupuestos_dentistasButton1
{
   width: 100%;
   height: 58px;
   visibility: visible;
   display: block;
   margin: 30px 0 0 0 ;
   padding: 0;
}
#wb_contactoCard1
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#contactoCard1-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
}
#contactoCard1-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#contactoCard1-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#contactoCard1-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 15px;
   text-align: left;
}
#wb_contactoCard1
{
   text-align: left;
}
#wb_presupuestos_dentistasCard1
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#presupuestos_dentistasCard1-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
   text-align: left;
}
#presupuestos_dentistasCard1-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#presupuestos_dentistasCard1-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#presupuestos_dentistasCard1-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 15px;
   text-align: left;
}
#wb_presupuestos_dentistasCard1
{
   text-align: left;
}
#wb_presupuestos-control-plagasCard1
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#presupuestos-control-plagasCard1-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
   text-align: left;
}
#presupuestos-control-plagasCard1-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#presupuestos-control-plagasCard1-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#presupuestos-control-plagasCard1-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: Lato;
   font-weight: normal;
   font-style: normal;
   font-size: 19px;
   text-align: left;
}
#wb_presupuestos-control-plagasCard1
{
   text-align: left;
}
#wb_presupuestos_dentistasCard3
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#presupuestos_dentistasCard3-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
}
#presupuestos_dentistasCard3-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#presupuestos_dentistasCard3-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#presupuestos_dentistasCard3-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 15px;
   text-align: left;
}
#wb_presupuestos_dentistasCard3
{
   text-align: left;
}
#wb_venta_aire_acondicionadoLayoutGrid4
{
   visibility: visible;
   display: table;
}
#wb_venta_aire_acondicionadoLayoutGrid4
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#venta_aire_acondicionadoLayoutGrid4
{
   height: auto;
   padding: 70px 0 70px 0;
}
#wb_venta_aire_acondicionadoHeading1
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 20px 0 0 0;
}
#wb_Text37
{
   visibility: visible;
   display: block;
}
#wb_Text37
{
   margin: 0;
   padding: 20px 0 20px 0;
}
#wb_Shape15
{
   visibility: visible;
   display: inline-block;
   margin: 0;
}
#wb_master-frameLayoutGrid3
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid3
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid3
{
   height: auto;
   padding: 0 0 20px 0;
}
#wb_Image26
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image26
{
   width: 24px;
   height: 24px;
}
#wb_Text48
{
   visibility: visible;
   display: block;
}
#wb_Text48
{
   margin: 0;
   padding: 0;
}
#wb_Text49
{
   visibility: visible;
   display: block;
}
#wb_Text49
{
   margin: 0;
   padding: 10px 0 20px 0;
}
#wb_Shape13
{
   visibility: visible;
   display: inline-block;
   margin: 0 0 15px 0 ;
}
#wb_Text73
{
   visibility: visible;
   display: block;
}
#wb_Text73
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_Text50
{
   visibility: visible;
   display: block;
}
#wb_Text50
{
   margin: 0 0 20px 0 ;
   padding: 0;
}
#wb_Image27
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image27
{
   width: 24px;
   height: 24px;
}
#wb_Image24
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image24
{
   width: 24px;
   height: 24px;
}
#wb_Text60
{
   visibility: visible;
   display: block;
}
#wb_Text60
{
   margin: 0;
   padding: 0;
}
#wb_Image25
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image25
{
   width: 24px;
   height: 24px;
}
#wb_Text58
{
   visibility: visible;
   display: block;
}
#wb_Text58
{
   margin: 0;
   padding: 0;
}
#wb_Image17
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image17
{
   width: 24px;
   height: 24px;
}
#wb_Text57
{
   visibility: visible;
   display: block;
}
#wb_Text57
{
   margin: 0;
   padding: 0 0 20px 0;
}
#wb_master-frameLayoutGrid6
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid6
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid6
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameImage2
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
}
#wb_master-frameImage3
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#master-frameImage3
{
   width: 24px;
   height: 24px;
}
#wb_master-frameText2
{
   visibility: visible;
   display: block;
}
#wb_master-frameText2
{
   margin: 0;
   padding: 0;
}
#wb_master-frameText26
{
   visibility: visible;
   display: block;
}
#wb_master-frameText26
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText27
{
   visibility: visible;
   display: block;
}
#wb_master-frameText27
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText28
{
   visibility: visible;
   display: block;
}
#wb_master-frameText28
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameLayoutGrid7
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid7
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid7
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameText3
{
   visibility: visible;
   display: block;
}
#wb_master-frameText3
{
   margin: 0;
   padding: 5px 0 5px 0;
}
#wb_master-frameText4
{
   visibility: visible;
   display: block;
}
#wb_master-frameText4
{
   margin: 0;
   padding: 5px 0 5px 0;
}
#wb_master-frameText5
{
   visibility: visible;
   display: block;
}
#wb_master-frameText5
{
   margin: 0;
   padding: 5px 0 5px 0;
}
#wb_master-frameText6
{
   visibility: visible;
   display: block;
}
#wb_master-frameText6
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText9
{
   visibility: visible;
   display: block;
}
#wb_master-frameText9
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText23
{
   visibility: visible;
   display: block;
}
#wb_master-frameText23
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText29
{
   visibility: visible;
   display: block;
}
#wb_master-frameText29
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText31
{
   visibility: visible;
   display: block;
}
#wb_master-frameText31
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText34
{
   visibility: visible;
   display: block;
}
#wb_master-frameText34
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText36
{
   visibility: visible;
   display: block;
}
#wb_master-frameText36
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText39
{
   visibility: visible;
   display: block;
}
#wb_master-frameText39
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText13
{
   visibility: visible;
   display: block;
}
#wb_master-frameText13
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText14
{
   visibility: visible;
   display: block;
}
#wb_master-frameText14
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText17
{
   visibility: visible;
   display: block;
}
#wb_master-frameText17
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText21
{
   visibility: visible;
   display: block;
}
#wb_master-frameText21
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText22
{
   visibility: visible;
   display: block;
}
#wb_master-frameText22
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText43
{
   visibility: visible;
   display: block;
}
#wb_master-frameText43
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText47
{
   visibility: visible;
   display: block;
}
#wb_master-frameText47
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText48
{
   visibility: visible;
   display: block;
}
#wb_master-frameText48
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText51
{
   visibility: visible;
   display: block;
}
#wb_master-frameText51
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText55
{
   visibility: visible;
   display: block;
}
#wb_master-frameText55
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText56
{
   visibility: visible;
   display: block;
}
#wb_master-frameText56
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText59
{
   visibility: visible;
   display: block;
}
#wb_master-frameText59
{
   margin: 0;
   padding: 0 0 7px 0;
}
}
@media only screen and (min-width: 768px) and (max-width: 1023px)
{
body
{
   background-color: #FFFFFF;
   background-image: none;
}
#wb_top
{
   visibility: visible;
   display: table;
}
#wb_top
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#top
{
   height: auto;
   padding: 5px 0 5px 0;
}
#wb_master-frameLayoutGrid2
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid2
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid2
{
   height: auto;
   padding: 0;
}
#master-frameExtension1
{
}
#wbfx_flecha_arriba
{
   width: 45px;
   height: 45px;
   visibility: visible;
   display: block;
}
#wb_indexFontAwesomeIcon1
{
   left: 5px;
   top: 5px;
   width: 35px;
   height: 35px;
   visibility: visible;
   display: inline;
   margin: 0;
   padding: 0;
}
#indexFontAwesomeIcon1
{
   width: 35px;
   height: 35px;
}
#indexFontAwesomeIcon1 i
{
   line-height: 35px;
   font-size: 35px;
   width: 29px;
}
#wb_master-frameLayoutGrid5
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid5
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid5
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameText1
{
   visibility: visible;
   display: block;
}
#wb_master-frameText1
{
   margin: 0;
   padding: 0;
}
#wb_Text3
{
   visibility: visible;
   display: block;
}
#wb_Text3
{
   margin: 0;
   padding: 10px 0 5px 0;
}
#wb_Image3
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image3
{
   width: 24px;
   height: 24px;
}
#wb_Image4
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image4
{
   width: 24px;
   height: 24px;
}
#master-frameLine3
{
   width: 10px;
   height: 20px;
   visibility: visible;
   display: inline-block;
   margin: 0;
}
#master-frameLine3
{
   border-color: transparent;
   border-bottom-width: 20px;
}
#master-frameLine4
{
   width: 10px;
   height: 23px;
   visibility: visible;
   display: inline-block;
   margin: 0;
}
#master-frameLine4
{
   border-color: transparent;
   border-bottom-width: 23px;
}
#wb_master-frameImage1
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#master-frameImage1
{
   width: 24px;
   height: 24px;
}
#wb_master-frameLayoutGrid1
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid1
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid1
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameResponsiveMenu2
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   text-align: center;
}
#wb_master-frameResponsiveMenu2 ul li a
{
   font-family: "Raleway";
   font-weight: 600;
   font-size: 15px;
   text-decoration: none;
}
#wb_master-frameResponsiveMenu2 ul li a, #wb_master-frameResponsiveMenu2 .toggle
{
   font-family: "Raleway";
   font-weight: 600;
   font-size: 15px;
}
#master-frameResponsiveMenu2
{
   height: 44px;
}
#wb_master-frameResponsiveMenu2 ul ul
{
   top: 44px;
}
#wb_master-frameResponsiveMenu2 ul ul ul li
{
   left: 204px;
   top: -44px;
}
#wb_master-frameResponsiveMenu2 > ul > li > a
{
   height: 14px;
}
#wb_master-frameResponsiveMenu2 ul ul li
{
   width: 204px;
}
#wb_empresa_aire_acondicionadoLayoutGrid1
{
   visibility: visible;
   display: table;
   background-color: transparent;
   background-image: url('../wbfx-images/toldo%2dpunto%2drecto%2d2022%2d3.jpg');
   background-repeat: repeat;
   background-position: center center !important;
   background-attachment: scroll;
   background-size: cover;
}
#wb_empresa_aire_acondicionadoLayoutGrid1
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#empresa_aire_acondicionadoLayoutGrid1
{
   height: auto;
   padding: 150px 0 150px 0;
}
#wb_Heading1
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
}
#wb_presupuestos_dentistasLayoutGrid1
{
   visibility: visible;
   display: table;
}
#wb_presupuestos_dentistasLayoutGrid1
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#presupuestos_dentistasLayoutGrid1
{
   height: auto;
   padding: 0;
}
#wb_Text6
{
   visibility: visible;
   display: block;
}
#wb_Text6
{
   font-size: 43px;
   margin: 50px 15px 30px 15px;
   padding: 0;
   text-align: left;
}
#wb_Text7
{
   visibility: visible;
   display: block;
}
#wb_Text7
{
   margin: 0 30px 30px 15px;
   padding: 0;
}
#wb_Text9
{
   visibility: visible;
   display: block;
}
#wb_Text9
{
   font-size: 17px;
   margin: 60px 0 20px 0 ;
   padding: 0;
   text-align: left;
}
#wb_presupuestos_dentistasLayoutGrid2
{
   visibility: visible;
   display: table;
}
#wb_presupuestos_dentistasLayoutGrid2
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#presupuestos_dentistasLayoutGrid2
{
   height: auto;
   padding: 0 15px 0 15px;
}
#presupuestos_dentistasLayoutGrid2 .row
{
   margin-right: -15px;
   margin-left: -15px;
}
#wb_Image6
{
   width: 26px;
   height: 26px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image6
{
   width: 26px;
   height: 26px;
}
#wb_presupuestos-toldosImage1
{
   width: 26px;
   height: 26px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#presupuestos-toldosImage1
{
   width: 26px;
   height: 26px;
}
#wb_Image7
{
   width: 26px;
   height: 26px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image7
{
   width: 26px;
   height: 26px;
}
#wb_contactoLayoutGrid4
{
   visibility: visible;
   display: table;
}
#wb_contactoLayoutGrid4
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#contactoLayoutGrid4
{
   height: auto;
   padding: 0 10px 50px 10px;
}
#contactoLayoutGrid4 .row
{
   margin-right: -10px;
   margin-left: -10px;
}
#wb_Text2
{
   visibility: visible;
   display: block;
}
#wb_Text2
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#presupuestos_dentistasEditbox1
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#presupuestos_dentistasEditbox1
{
   line-height: 28px;
}
#wb_presupuestos_dentistasText1
{
   visibility: visible;
   display: block;
}
#wb_presupuestos_dentistasText1
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Editbox6
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#Editbox6
{
   line-height: 28px;
}
#wb_Text10
{
   visibility: visible;
   display: block;
}
#wb_Text10
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Editbox7
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#Editbox7
{
   line-height: 28px;
}
#wb_Text4
{
   visibility: visible;
   display: block;
}
#wb_Text4
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Editbox3
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#Editbox3
{
   line-height: 28px;
}
#wb_Text11
{
   visibility: visible;
   display: block;
}
#wb_Text11
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Combobox1
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
}
#wb_presupuestos-toldosText1
{
   visibility: visible;
   display: block;
}
#wb_presupuestos-toldosText1
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#TextArea1
{
   width: 100%;
   height: 151px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0 0 25px 0;
   text-align: left;
}
#wb_presupuestos-toldosText2
{
   visibility: visible;
   display: block;
}
#wb_presupuestos-toldosText2
{
   font-size: 15px;
   margin: 0;
   padding: 30px 0 10px 0;
   text-align: center;
}
#wb_presupuestos_dentistasCheckbox1
{
   width: 20px;
   height: 20px;
   visibility: visible;
   display: inline-block;
   margin: 25px 0 0 0 ;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']
{
   width: 20px;
   height: 20px;
}
#wb_presupuestos_dentistasCheckbox1 label::before
{
   width: 20px;
   height: 20px;
   border-color: #800000;
}
#wb_presupuestos_dentistasCheckbox1 label::after
{
   width: 20px;
   height: 20px;
   line-height: 20px;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']:checked + label::after
{
   color: #FFFFFF;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']:checked + label::before
{
   background-color: #3370B7;
   background-image: none;
   border-color: #3370B7;
}
#wb_presupuestos-control-plagasCaptcha1
{
   width: 100%;
   height: 100px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 4px 4px 4px 4px;
   text-align: left;
}
#presupuestos_dentistasButton1
{
   width: 100%;
   height: 62px;
   visibility: visible;
   display: block;
   margin: 30px 0 0 0 ;
   padding: 0;
}
#wb_contactoCard1
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#contactoCard1-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
}
#contactoCard1-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#contactoCard1-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#contactoCard1-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 15px;
   text-align: left;
}
#wb_contactoCard1
{
   text-align: left;
}
#wb_presupuestos_dentistasCard1
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#presupuestos_dentistasCard1-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
   text-align: left;
}
#presupuestos_dentistasCard1-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#presupuestos_dentistasCard1-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#presupuestos_dentistasCard1-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 15px;
   text-align: left;
}
#wb_presupuestos_dentistasCard1
{
   text-align: left;
}
#wb_presupuestos-control-plagasCard1
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#presupuestos-control-plagasCard1-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
   text-align: left;
}
#presupuestos-control-plagasCard1-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#presupuestos-control-plagasCard1-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#presupuestos-control-plagasCard1-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: Lato;
   font-weight: normal;
   font-style: normal;
   font-size: 19px;
   text-align: left;
}
#wb_presupuestos-control-plagasCard1
{
   text-align: left;
}
#wb_presupuestos_dentistasCard3
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#presupuestos_dentistasCard3-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
}
#presupuestos_dentistasCard3-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#presupuestos_dentistasCard3-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#presupuestos_dentistasCard3-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 15px;
   text-align: left;
}
#wb_presupuestos_dentistasCard3
{
   text-align: left;
}
#wb_venta_aire_acondicionadoLayoutGrid4
{
   visibility: visible;
   display: table;
}
#wb_venta_aire_acondicionadoLayoutGrid4
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#venta_aire_acondicionadoLayoutGrid4
{
   height: auto;
   padding: 70px 0 70px 0;
}
#wb_venta_aire_acondicionadoHeading1
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 20px 0 0 0;
}
#wb_Text37
{
   visibility: visible;
   display: block;
}
#wb_Text37
{
   margin: 0;
   padding: 20px 0 20px 0;
}
#wb_Shape15
{
   visibility: visible;
   display: inline-block;
   margin: 0;
}
#wb_master-frameLayoutGrid3
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid3
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid3
{
   height: auto;
   padding: 0 0 20px 0;
}
#wb_Image26
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image26
{
   width: 24px;
   height: 24px;
}
#wb_Text48
{
   visibility: visible;
   display: block;
}
#wb_Text48
{
   margin: 0;
   padding: 0;
}
#wb_Text49
{
   visibility: visible;
   display: block;
}
#wb_Text49
{
   margin: 0;
   padding: 10px 0 20px 0;
}
#wb_Shape13
{
   visibility: visible;
   display: inline-block;
   margin: 0 0 15px 0 ;
}
#wb_Text73
{
   visibility: visible;
   display: block;
}
#wb_Text73
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_Text50
{
   visibility: visible;
   display: block;
}
#wb_Text50
{
   margin: 0 0 20px 0 ;
   padding: 0;
}
#wb_Image27
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image27
{
   width: 24px;
   height: 24px;
}
#wb_Image24
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image24
{
   width: 24px;
   height: 24px;
}
#wb_Text60
{
   visibility: visible;
   display: block;
}
#wb_Text60
{
   margin: 0;
   padding: 0;
}
#wb_Image25
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image25
{
   width: 24px;
   height: 24px;
}
#wb_Text58
{
   visibility: visible;
   display: block;
}
#wb_Text58
{
   margin: 0;
   padding: 0;
}
#wb_Image17
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image17
{
   width: 24px;
   height: 24px;
}
#wb_Text57
{
   visibility: visible;
   display: block;
}
#wb_Text57
{
   margin: 0;
   padding: 0 0 20px 0;
}
#wb_master-frameLayoutGrid6
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid6
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid6
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameImage2
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
}
#wb_master-frameImage3
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#master-frameImage3
{
   width: 24px;
   height: 24px;
}
#wb_master-frameText2
{
   visibility: visible;
   display: block;
}
#wb_master-frameText2
{
   margin: 0;
   padding: 0;
}
#wb_master-frameText26
{
   visibility: visible;
   display: block;
}
#wb_master-frameText26
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText27
{
   visibility: visible;
   display: block;
}
#wb_master-frameText27
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText28
{
   visibility: visible;
   display: block;
}
#wb_master-frameText28
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameLayoutGrid7
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid7
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid7
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameText3
{
   visibility: visible;
   display: block;
}
#wb_master-frameText3
{
   margin: 0;
   padding: 5px 0 5px 0;
}
#wb_master-frameText4
{
   visibility: visible;
   display: block;
}
#wb_master-frameText4
{
   margin: 0;
   padding: 5px 0 5px 0;
}
#wb_master-frameText5
{
   visibility: visible;
   display: block;
}
#wb_master-frameText5
{
   margin: 0;
   padding: 5px 0 5px 0;
}
#wb_master-frameText6
{
   visibility: visible;
   display: block;
}
#wb_master-frameText6
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText9
{
   visibility: visible;
   display: block;
}
#wb_master-frameText9
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText23
{
   visibility: visible;
   display: block;
}
#wb_master-frameText23
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText29
{
   visibility: visible;
   display: block;
}
#wb_master-frameText29
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText31
{
   visibility: visible;
   display: block;
}
#wb_master-frameText31
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText34
{
   visibility: visible;
   display: block;
}
#wb_master-frameText34
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText36
{
   visibility: visible;
   display: block;
}
#wb_master-frameText36
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText39
{
   visibility: visible;
   display: block;
}
#wb_master-frameText39
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText13
{
   visibility: visible;
   display: block;
}
#wb_master-frameText13
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText14
{
   visibility: visible;
   display: block;
}
#wb_master-frameText14
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText17
{
   visibility: visible;
   display: block;
}
#wb_master-frameText17
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText21
{
   visibility: visible;
   display: block;
}
#wb_master-frameText21
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText22
{
   visibility: visible;
   display: block;
}
#wb_master-frameText22
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText43
{
   visibility: visible;
   display: block;
}
#wb_master-frameText43
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText47
{
   visibility: visible;
   display: block;
}
#wb_master-frameText47
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText48
{
   visibility: visible;
   display: block;
}
#wb_master-frameText48
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText51
{
   visibility: visible;
   display: block;
}
#wb_master-frameText51
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText55
{
   visibility: visible;
   display: block;
}
#wb_master-frameText55
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText56
{
   visibility: visible;
   display: block;
}
#wb_master-frameText56
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText59
{
   visibility: visible;
   display: block;
}
#wb_master-frameText59
{
   margin: 0;
   padding: 0 0 7px 0;
}
}
@media only screen and (min-width: 480px) and (max-width: 767px)
{
body
{
   background-color: #FFFFFF;
   background-image: none;
}
#wb_top
{
   visibility: visible;
   display: table;
}
#wb_top
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#top
{
   height: auto;
   padding: 5px 0 5px 0;
}
#wb_master-frameLayoutGrid2
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid2
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid2
{
   height: auto;
   padding: 0;
}
#master-frameExtension1
{
}
#wbfx_flecha_arriba
{
   width: 45px;
   height: 45px;
   visibility: visible;
   display: block;
}
#wb_indexFontAwesomeIcon1
{
   left: 5px;
   top: 5px;
   width: 35px;
   height: 35px;
   visibility: visible;
   display: inline;
   margin: 0;
   padding: 0;
}
#indexFontAwesomeIcon1
{
   width: 35px;
   height: 35px;
}
#indexFontAwesomeIcon1 i
{
   line-height: 35px;
   font-size: 35px;
   width: 29px;
}
#wb_master-frameLayoutGrid5
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid5
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid5
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameText1
{
   visibility: visible;
   display: block;
}
#wb_master-frameText1
{
   margin: 0;
   padding: 0;
}
#wb_Text3
{
   visibility: visible;
   display: block;
}
#wb_Text3
{
   margin: 0;
   padding: 10px 0 5px 0;
}
#wb_Image3
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image3
{
   width: 24px;
   height: 24px;
}
#wb_Image4
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image4
{
   width: 24px;
   height: 24px;
}
#master-frameLine3
{
   width: 10px;
   height: 20px;
   visibility: visible;
   display: inline-block;
   margin: 0;
}
#master-frameLine3
{
   border-color: transparent;
   border-bottom-width: 20px;
}
#master-frameLine4
{
   width: 10px;
   height: 23px;
   visibility: visible;
   display: inline-block;
   margin: 0;
}
#master-frameLine4
{
   border-color: transparent;
   border-bottom-width: 23px;
}
#wb_master-frameImage1
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#master-frameImage1
{
   width: 24px;
   height: 24px;
}
#wb_master-frameLayoutGrid1
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid1
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid1
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameResponsiveMenu2
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   text-align: center;
}
#wb_master-frameResponsiveMenu2 ul li a
{
   font-family: "Raleway";
   font-weight: 600;
   font-size: 15px;
   text-decoration: none;
}
#wb_master-frameResponsiveMenu2 ul li a, #wb_master-frameResponsiveMenu2 .toggle
{
   font-family: "Raleway";
   font-weight: 600;
   font-size: 15px;
}
#master-frameResponsiveMenu2
{
   height: 44px;
}
#wb_master-frameResponsiveMenu2 ul ul
{
   top: 44px;
}
#wb_master-frameResponsiveMenu2 ul ul ul li
{
   left: 204px;
   top: -44px;
}
#wb_master-frameResponsiveMenu2 > ul > li > a
{
   height: 14px;
}
#wb_master-frameResponsiveMenu2 ul ul li
{
   width: 204px;
}
#wb_empresa_aire_acondicionadoLayoutGrid1
{
   visibility: visible;
   display: table;
   background-color: transparent;
   background-image: url('../wbfx-images/toldo%2dpunto%2drecto%2d2022%2d3.jpg');
   background-repeat: repeat;
   background-position: center center !important;
   background-attachment: scroll;
   background-size: cover;
}
#wb_empresa_aire_acondicionadoLayoutGrid1
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#empresa_aire_acondicionadoLayoutGrid1
{
   height: auto;
   padding: 150px 0 150px 0;
}
#wb_Heading1
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
}
#wb_presupuestos_dentistasLayoutGrid1
{
   visibility: visible;
   display: table;
}
#wb_presupuestos_dentistasLayoutGrid1
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#presupuestos_dentistasLayoutGrid1
{
   height: auto;
   padding: 0 0 40px 0;
}
#wb_Text6
{
   visibility: visible;
   display: block;
}
#wb_Text6
{
   font-size: 32px;
   margin: 50px 15px 30px 15px;
   padding: 0;
   text-align: left;
}
#wb_Text7
{
   visibility: visible;
   display: block;
}
#wb_Text7
{
   margin: 0 30px 30px 15px;
   padding: 0;
}
#wb_Text9
{
   visibility: visible;
   display: block;
}
#wb_Text9
{
   font-size: 19px;
   margin: 60px 0 20px 0 ;
   padding: 0;
   text-align: left;
}
#wb_presupuestos_dentistasLayoutGrid2
{
   visibility: visible;
   display: table;
}
#wb_presupuestos_dentistasLayoutGrid2
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#presupuestos_dentistasLayoutGrid2
{
   height: auto;
   padding: 0 15px 0 15px;
}
#presupuestos_dentistasLayoutGrid2 .row
{
   margin-right: -15px;
   margin-left: -15px;
}
#wb_Image6
{
   width: 26px;
   height: 26px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image6
{
   width: 26px;
   height: 26px;
}
#wb_presupuestos-toldosImage1
{
   width: 26px;
   height: 26px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#presupuestos-toldosImage1
{
   width: 26px;
   height: 26px;
}
#wb_Image7
{
   width: 26px;
   height: 26px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image7
{
   width: 26px;
   height: 26px;
}
#wb_contactoLayoutGrid4
{
   visibility: visible;
   display: table;
}
#wb_contactoLayoutGrid4
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#contactoLayoutGrid4
{
   height: auto;
   padding: 0 10px 50px 10px;
}
#contactoLayoutGrid4 .row
{
   margin-right: -10px;
   margin-left: -10px;
}
#wb_Text2
{
   visibility: visible;
   display: block;
}
#wb_Text2
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#presupuestos_dentistasEditbox1
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#presupuestos_dentistasEditbox1
{
   line-height: 28px;
}
#wb_presupuestos_dentistasText1
{
   visibility: visible;
   display: block;
}
#wb_presupuestos_dentistasText1
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Editbox6
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#Editbox6
{
   line-height: 28px;
}
#wb_Text10
{
   visibility: visible;
   display: block;
}
#wb_Text10
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Editbox7
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#Editbox7
{
   line-height: 28px;
}
#wb_Text4
{
   visibility: visible;
   display: block;
}
#wb_Text4
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Editbox3
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#Editbox3
{
   line-height: 28px;
}
#wb_Text11
{
   visibility: visible;
   display: block;
}
#wb_Text11
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Combobox1
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
}
#wb_presupuestos-toldosText1
{
   visibility: visible;
   display: block;
}
#wb_presupuestos-toldosText1
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#TextArea1
{
   width: 100%;
   height: 151px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0 0 25px 0;
   text-align: left;
}
#wb_presupuestos-toldosText2
{
   visibility: visible;
   display: block;
}
#wb_presupuestos-toldosText2
{
   font-size: 15px;
   margin: 0;
   padding: 30px 0 10px 0;
   text-align: center;
}
#wb_presupuestos_dentistasCheckbox1
{
   width: 20px;
   height: 20px;
   visibility: visible;
   display: inline-block;
   margin: 25px 0 0 0 ;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']
{
   width: 20px;
   height: 20px;
}
#wb_presupuestos_dentistasCheckbox1 label::before
{
   width: 20px;
   height: 20px;
   border-color: #800000;
}
#wb_presupuestos_dentistasCheckbox1 label::after
{
   width: 20px;
   height: 20px;
   line-height: 20px;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']:checked + label::after
{
   color: #FFFFFF;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']:checked + label::before
{
   background-color: #3370B7;
   background-image: none;
   border-color: #3370B7;
}
#wb_presupuestos-control-plagasCaptcha1
{
   width: 100%;
   height: 100px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 4px 4px 4px 4px;
   text-align: left;
}
#presupuestos_dentistasButton1
{
   width: 100%;
   height: 58px;
   visibility: visible;
   display: block;
   margin: 30px 0 0 0 ;
   padding: 0;
}
#wb_contactoCard1
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#contactoCard1-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
}
#contactoCard1-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#contactoCard1-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#contactoCard1-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 15px;
   text-align: left;
}
#wb_contactoCard1
{
   text-align: left;
}
#wb_presupuestos_dentistasCard1
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#presupuestos_dentistasCard1-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
   text-align: left;
}
#presupuestos_dentistasCard1-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#presupuestos_dentistasCard1-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#presupuestos_dentistasCard1-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 15px;
   text-align: left;
}
#wb_presupuestos_dentistasCard1
{
   text-align: left;
}
#wb_presupuestos-control-plagasCard1
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#presupuestos-control-plagasCard1-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
   text-align: left;
}
#presupuestos-control-plagasCard1-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#presupuestos-control-plagasCard1-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#presupuestos-control-plagasCard1-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: Lato;
   font-weight: normal;
   font-style: normal;
   font-size: 19px;
   text-align: left;
}
#wb_presupuestos-control-plagasCard1
{
   text-align: left;
}
#wb_presupuestos_dentistasCard3
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#presupuestos_dentistasCard3-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
}
#presupuestos_dentistasCard3-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#presupuestos_dentistasCard3-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#presupuestos_dentistasCard3-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 15px;
   text-align: left;
}
#wb_presupuestos_dentistasCard3
{
   text-align: left;
}
#wb_venta_aire_acondicionadoLayoutGrid4
{
   visibility: visible;
   display: table;
}
#wb_venta_aire_acondicionadoLayoutGrid4
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#venta_aire_acondicionadoLayoutGrid4
{
   height: auto;
   padding: 70px 0 70px 0;
}
#wb_venta_aire_acondicionadoHeading1
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 20px 0 0 0;
}
#wb_Text37
{
   visibility: visible;
   display: block;
}
#wb_Text37
{
   margin: 0;
   padding: 20px 0 20px 0;
}
#wb_Shape15
{
   visibility: visible;
   display: inline-block;
   margin: 0;
}
#wb_master-frameLayoutGrid3
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid3
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid3
{
   height: auto;
   padding: 0 0 20px 0;
}
#wb_Image26
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image26
{
   width: 24px;
   height: 24px;
}
#wb_Text48
{
   visibility: visible;
   display: block;
}
#wb_Text48
{
   margin: 0;
   padding: 0;
}
#wb_Text49
{
   visibility: visible;
   display: block;
}
#wb_Text49
{
   margin: 0;
   padding: 10px 0 20px 0;
}
#wb_Shape13
{
   visibility: visible;
   display: inline-block;
   margin: 0 0 15px 0 ;
}
#wb_Text73
{
   visibility: visible;
   display: block;
}
#wb_Text73
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_Text50
{
   visibility: visible;
   display: block;
}
#wb_Text50
{
   margin: 0 0 20px 0 ;
   padding: 0;
}
#wb_Image27
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image27
{
   width: 24px;
   height: 24px;
}
#wb_Image24
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image24
{
   width: 24px;
   height: 24px;
}
#wb_Text60
{
   visibility: visible;
   display: block;
}
#wb_Text60
{
   margin: 0;
   padding: 0;
}
#wb_Image25
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image25
{
   width: 24px;
   height: 24px;
}
#wb_Text58
{
   visibility: visible;
   display: block;
}
#wb_Text58
{
   margin: 0;
   padding: 0;
}
#wb_Image17
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image17
{
   width: 24px;
   height: 24px;
}
#wb_Text57
{
   visibility: visible;
   display: block;
}
#wb_Text57
{
   margin: 0;
   padding: 0 0 20px 0;
}
#wb_master-frameLayoutGrid6
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid6
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid6
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameImage2
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
}
#wb_master-frameImage3
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#master-frameImage3
{
   width: 24px;
   height: 24px;
}
#wb_master-frameText2
{
   visibility: visible;
   display: block;
}
#wb_master-frameText2
{
   margin: 0;
   padding: 0;
}
#wb_master-frameText26
{
   visibility: visible;
   display: block;
}
#wb_master-frameText26
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText27
{
   visibility: visible;
   display: block;
}
#wb_master-frameText27
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText28
{
   visibility: visible;
   display: block;
}
#wb_master-frameText28
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameLayoutGrid7
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid7
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid7
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameText3
{
   visibility: visible;
   display: block;
}
#wb_master-frameText3
{
   margin: 0;
   padding: 5px 0 5px 0;
}
#wb_master-frameText4
{
   visibility: visible;
   display: block;
}
#wb_master-frameText4
{
   margin: 0;
   padding: 5px 0 5px 0;
}
#wb_master-frameText5
{
   visibility: visible;
   display: block;
}
#wb_master-frameText5
{
   margin: 0;
   padding: 5px 0 5px 0;
}
#wb_master-frameText6
{
   visibility: visible;
   display: block;
}
#wb_master-frameText6
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText9
{
   visibility: visible;
   display: block;
}
#wb_master-frameText9
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText23
{
   visibility: visible;
   display: block;
}
#wb_master-frameText23
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText29
{
   visibility: visible;
   display: block;
}
#wb_master-frameText29
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText31
{
   visibility: visible;
   display: block;
}
#wb_master-frameText31
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText34
{
   visibility: visible;
   display: block;
}
#wb_master-frameText34
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText36
{
   visibility: visible;
   display: block;
}
#wb_master-frameText36
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText39
{
   visibility: visible;
   display: block;
}
#wb_master-frameText39
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText13
{
   visibility: visible;
   display: block;
}
#wb_master-frameText13
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText14
{
   visibility: visible;
   display: block;
}
#wb_master-frameText14
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText17
{
   visibility: visible;
   display: block;
}
#wb_master-frameText17
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText21
{
   visibility: visible;
   display: block;
}
#wb_master-frameText21
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText22
{
   visibility: visible;
   display: block;
}
#wb_master-frameText22
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText43
{
   visibility: visible;
   display: block;
}
#wb_master-frameText43
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText47
{
   visibility: visible;
   display: block;
}
#wb_master-frameText47
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText48
{
   visibility: visible;
   display: block;
}
#wb_master-frameText48
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText51
{
   visibility: visible;
   display: block;
}
#wb_master-frameText51
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText55
{
   visibility: visible;
   display: block;
}
#wb_master-frameText55
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText56
{
   visibility: visible;
   display: block;
}
#wb_master-frameText56
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText59
{
   visibility: visible;
   display: block;
}
#wb_master-frameText59
{
   margin: 0;
   padding: 0 0 7px 0;
}
}
@media only screen and (max-width: 479px)
{
body
{
   background-color: #FFFFFF;
   background-image: none;
}
#wb_top
{
   visibility: visible;
   display: table;
}
#wb_top
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#top
{
   height: auto;
   padding: 5px 0 5px 0;
}
#wb_master-frameLayoutGrid2
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid2
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid2
{
   height: auto;
   padding: 0;
}
#master-frameExtension1
{
}
#wbfx_flecha_arriba
{
   width: 45px;
   height: 45px;
   visibility: visible;
   display: block;
}
#wb_indexFontAwesomeIcon1
{
   left: 5px;
   top: 5px;
   width: 35px;
   height: 35px;
   visibility: visible;
   display: inline;
   margin: 0;
   padding: 0;
}
#indexFontAwesomeIcon1
{
   width: 35px;
   height: 35px;
}
#indexFontAwesomeIcon1 i
{
   line-height: 35px;
   font-size: 35px;
   width: 29px;
}
#wb_master-frameLayoutGrid5
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid5
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid5
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameText1
{
   visibility: visible;
   display: block;
}
#wb_master-frameText1
{
   margin: 0;
   padding: 0;
}
#wb_Text3
{
   visibility: visible;
   display: block;
}
#wb_Text3
{
   margin: 0;
   padding: 10px 0 5px 0;
}
#wb_Image3
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image3
{
   width: 24px;
   height: 24px;
}
#wb_Image4
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image4
{
   width: 24px;
   height: 24px;
}
#master-frameLine3
{
   width: 10px;
   height: 20px;
   visibility: visible;
   display: inline-block;
   margin: 0;
}
#master-frameLine3
{
   border-color: transparent;
   border-bottom-width: 20px;
}
#master-frameLine4
{
   width: 10px;
   height: 23px;
   visibility: visible;
   display: inline-block;
   margin: 0;
}
#master-frameLine4
{
   border-color: transparent;
   border-bottom-width: 23px;
}
#wb_master-frameImage1
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#master-frameImage1
{
   width: 24px;
   height: 24px;
}
#wb_master-frameLayoutGrid1
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid1
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid1
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameResponsiveMenu2
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   text-align: center;
}
#wb_master-frameResponsiveMenu2 ul li a
{
   font-family: "Raleway";
   font-weight: 600;
   font-size: 15px;
   text-decoration: none;
}
#wb_master-frameResponsiveMenu2 ul li a, #wb_master-frameResponsiveMenu2 .toggle
{
   font-family: "Raleway";
   font-weight: 600;
   font-size: 15px;
}
#master-frameResponsiveMenu2
{
   height: 44px;
}
#wb_master-frameResponsiveMenu2 ul ul
{
   top: 44px;
}
#wb_master-frameResponsiveMenu2 ul ul ul li
{
   left: 204px;
   top: -44px;
}
#wb_master-frameResponsiveMenu2 > ul > li > a
{
   height: 14px;
}
#wb_master-frameResponsiveMenu2 ul ul li
{
   width: 204px;
}
#wb_empresa_aire_acondicionadoLayoutGrid1
{
   visibility: visible;
   display: table;
   background-color: transparent;
   background-image: url('../wbfx-images/toldo%2dpunto%2drecto%2d2022%2d3.jpg');
   background-repeat: repeat;
   background-position: center center !important;
   background-attachment: scroll;
   background-size: cover;
}
#wb_empresa_aire_acondicionadoLayoutGrid1
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#empresa_aire_acondicionadoLayoutGrid1
{
   height: auto;
   padding: 150px 0 150px 0;
}
#wb_Heading1
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
}
#wb_presupuestos_dentistasLayoutGrid1
{
   visibility: visible;
   display: table;
}
#wb_presupuestos_dentistasLayoutGrid1
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#presupuestos_dentistasLayoutGrid1
{
   height: auto;
   padding: 0 0 40px 0;
}
#wb_Text6
{
   visibility: visible;
   display: block;
}
#wb_Text6
{
   font-size: 29px;
   margin: 50px 15px 30px 15px;
   padding: 0;
   text-align: left;
}
#wb_Text7
{
   visibility: visible;
   display: block;
}
#wb_Text7
{
   margin: 0 30px 30px 15px;
   padding: 0;
}
#wb_Text9
{
   visibility: visible;
   display: block;
}
#wb_Text9
{
   font-size: 19px;
   margin: 60px 0 20px 0 ;
   padding: 0;
   text-align: left;
}
#wb_presupuestos_dentistasLayoutGrid2
{
   visibility: visible;
   display: table;
}
#wb_presupuestos_dentistasLayoutGrid2
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#presupuestos_dentistasLayoutGrid2
{
   height: auto;
   padding: 0 15px 0 15px;
}
#presupuestos_dentistasLayoutGrid2 .row
{
   margin-right: -15px;
   margin-left: -15px;
}
#wb_Image6
{
   width: 26px;
   height: 26px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image6
{
   width: 26px;
   height: 26px;
}
#wb_presupuestos-toldosImage1
{
   width: 26px;
   height: 26px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#presupuestos-toldosImage1
{
   width: 26px;
   height: 26px;
}
#wb_Image7
{
   width: 26px;
   height: 26px;
   visibility: visible;
   display: inline-block;
   margin: 0;
   padding: 0;
}
#Image7
{
   width: 26px;
   height: 26px;
}
#wb_contactoLayoutGrid4
{
   visibility: visible;
   display: table;
}
#wb_contactoLayoutGrid4
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#contactoLayoutGrid4
{
   height: auto;
   padding: 0 10px 50px 10px;
}
#contactoLayoutGrid4 .row
{
   margin-right: -10px;
   margin-left: -10px;
}
#wb_Text2
{
   visibility: visible;
   display: block;
}
#wb_Text2
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#presupuestos_dentistasEditbox1
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#presupuestos_dentistasEditbox1
{
   line-height: 28px;
}
#wb_presupuestos_dentistasText1
{
   visibility: visible;
   display: block;
}
#wb_presupuestos_dentistasText1
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Editbox6
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#Editbox6
{
   line-height: 28px;
}
#wb_Text10
{
   visibility: visible;
   display: block;
}
#wb_Text10
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Editbox7
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#Editbox7
{
   line-height: 28px;
}
#wb_Text4
{
   visibility: visible;
   display: block;
}
#wb_Text4
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Editbox3
{
   width: 100%;
   height: 30px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
   text-align: left;
}
#Editbox3
{
   line-height: 28px;
}
#wb_Text11
{
   visibility: visible;
   display: block;
}
#wb_Text11
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#Combobox1
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
}
#wb_presupuestos-toldosText1
{
   visibility: visible;
   display: block;
}
#wb_presupuestos-toldosText1
{
   margin: 0;
   padding: 30px 0 10px 0;
}
#TextArea1
{
   width: 100%;
   height: 151px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0 0 25px 0;
   text-align: left;
}
#wb_presupuestos-toldosText2
{
   visibility: visible;
   display: block;
}
#wb_presupuestos-toldosText2
{
   font-size: 12px;
   margin: 0;
   padding: 30px 0 10px 0;
   text-align: center;
}
#wb_presupuestos_dentistasCheckbox1
{
   width: 20px;
   height: 20px;
   visibility: visible;
   display: inline-block;
   margin: 25px 0 0 0 ;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']
{
   width: 20px;
   height: 20px;
}
#wb_presupuestos_dentistasCheckbox1 label::before
{
   width: 20px;
   height: 20px;
   border-color: #800000;
}
#wb_presupuestos_dentistasCheckbox1 label::after
{
   width: 20px;
   height: 20px;
   line-height: 20px;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']:checked + label::after
{
   color: #FFFFFF;
}
#wb_presupuestos_dentistasCheckbox1 input[type='checkbox']:checked + label::before
{
   background-color: #3370B7;
   background-image: none;
   border-color: #3370B7;
}
#wb_presupuestos-control-plagasCaptcha1
{
   width: 100%;
   height: 100px;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 4px 4px 4px 4px;
   text-align: left;
}
#presupuestos_dentistasButton1
{
   width: 100%;
   height: 56px;
   visibility: visible;
   display: block;
   margin: 30px 0 0 0 ;
   padding: 0;
}
#wb_contactoCard1
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#contactoCard1-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
}
#contactoCard1-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#contactoCard1-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#contactoCard1-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 15px;
   text-align: left;
}
#wb_contactoCard1
{
   text-align: left;
}
#wb_presupuestos_dentistasCard1
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#presupuestos_dentistasCard1-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
   text-align: left;
}
#presupuestos_dentistasCard1-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#presupuestos_dentistasCard1-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#presupuestos_dentistasCard1-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 15px;
   text-align: left;
}
#wb_presupuestos_dentistasCard1
{
   text-align: left;
}
#wb_presupuestos-control-plagasCard1
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#presupuestos-control-plagasCard1-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
   text-align: left;
}
#presupuestos-control-plagasCard1-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#presupuestos-control-plagasCard1-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#presupuestos-control-plagasCard1-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: Lato;
   font-weight: normal;
   font-style: normal;
   font-size: 19px;
   text-align: left;
}
#wb_presupuestos-control-plagasCard1
{
   text-align: left;
}
#wb_presupuestos_dentistasCard3
{
   width: 100%;
   visibility: visible;
   display: flex;
   margin: 0;
   color: transparent;
}
#presupuestos_dentistasCard3-card-item0
{
   box-sizing: border-box;
   margin: 30px 0 15px 0 ;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 600;
   font-style: normal;
   font-size: 19px;
}
#presupuestos_dentistasCard3-card-item1
{
   box-sizing: border-box;
   margin: 0 100px 15px 0 ;
   border-top: 2px #696969 solid;
   border-width: 2px 0 0 0;
   height: 0;
   line-height: 0;
}
#presupuestos_dentistasCard3-card-item2
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   border: 0px solid #000000;
   border-radius: 0px;
   max-width: 30px;
   width: 100%;
   height: 30px;
}
#presupuestos_dentistasCard3-card-item3
{
   box-sizing: border-box;
   margin: -32px 0 0 35px;
   padding: 0;
   color: #000000;
   font-family: "Raleway";
   font-weight: 500;
   font-style: normal;
   font-size: 15px;
   text-align: left;
}
#wb_presupuestos_dentistasCard3
{
   text-align: left;
}
#wb_venta_aire_acondicionadoLayoutGrid4
{
   visibility: visible;
   display: table;
}
#wb_venta_aire_acondicionadoLayoutGrid4
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#venta_aire_acondicionadoLayoutGrid4
{
   height: auto;
   padding: 70px 0 70px 0;
}
#wb_venta_aire_acondicionadoHeading1
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 20px 0 0 0;
}
#wb_Text37
{
   visibility: visible;
   display: block;
}
#wb_Text37
{
   margin: 0;
   padding: 20px 0 20px 0;
}
#wb_Shape15
{
   visibility: visible;
   display: inline-block;
   margin: 0;
}
#wb_master-frameLayoutGrid3
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid3
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid3
{
   height: auto;
   padding: 0 0 20px 0;
}
#wb_Image26
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image26
{
   width: 24px;
   height: 24px;
}
#wb_Text48
{
   visibility: visible;
   display: block;
}
#wb_Text48
{
   margin: 0;
   padding: 0;
}
#wb_Text49
{
   visibility: visible;
   display: block;
}
#wb_Text49
{
   margin: 0;
   padding: 10px 0 20px 0;
}
#wb_Shape13
{
   visibility: visible;
   display: inline-block;
   margin: 0 0 15px 0 ;
}
#wb_Text73
{
   visibility: visible;
   display: block;
}
#wb_Text73
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_Text50
{
   visibility: visible;
   display: block;
}
#wb_Text50
{
   margin: 0 0 20px 0 ;
   padding: 0;
}
#wb_Image27
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image27
{
   width: 24px;
   height: 24px;
}
#wb_Image24
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image24
{
   width: 24px;
   height: 24px;
}
#wb_Text60
{
   visibility: visible;
   display: block;
}
#wb_Text60
{
   margin: 0;
   padding: 0;
}
#wb_Image25
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image25
{
   width: 24px;
   height: 24px;
}
#wb_Text58
{
   visibility: visible;
   display: block;
}
#wb_Text58
{
   margin: 0;
   padding: 0;
}
#wb_Image17
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#Image17
{
   width: 24px;
   height: 24px;
}
#wb_Text57
{
   visibility: visible;
   display: block;
}
#wb_Text57
{
   margin: 0;
   padding: 0 0 20px 0;
}
#wb_master-frameLayoutGrid6
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid6
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid6
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameImage2
{
   width: 100%;
   visibility: visible;
   display: block;
   margin: 0;
   padding: 0;
}
#wb_master-frameImage3
{
   width: 24px;
   height: 24px;
   visibility: visible;
   display: inline-block;
   margin: 30px 0 10px 0 ;
   padding: 0;
}
#master-frameImage3
{
   width: 24px;
   height: 24px;
}
#wb_master-frameText2
{
   visibility: visible;
   display: block;
}
#wb_master-frameText2
{
   margin: 0;
   padding: 0;
}
#wb_master-frameText26
{
   visibility: visible;
   display: block;
}
#wb_master-frameText26
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText27
{
   visibility: visible;
   display: block;
}
#wb_master-frameText27
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText28
{
   visibility: visible;
   display: block;
}
#wb_master-frameText28
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameLayoutGrid7
{
   visibility: visible;
   display: table;
}
#wb_master-frameLayoutGrid7
{
   height: auto;
   margin-top: 0px;
   margin-bottom: 0px;
}
#master-frameLayoutGrid7
{
   height: auto;
   padding: 10px 0 10px 0;
}
#wb_master-frameText3
{
   visibility: visible;
   display: block;
}
#wb_master-frameText3
{
   margin: 0;
   padding: 5px 0 5px 0;
}
#wb_master-frameText4
{
   visibility: visible;
   display: block;
}
#wb_master-frameText4
{
   margin: 0;
   padding: 5px 0 5px 0;
}
#wb_master-frameText5
{
   visibility: visible;
   display: block;
}
#wb_master-frameText5
{
   margin: 0;
   padding: 5px 0 5px 0;
}
#wb_master-frameText6
{
   visibility: visible;
   display: block;
}
#wb_master-frameText6
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText9
{
   visibility: visible;
   display: block;
}
#wb_master-frameText9
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText23
{
   visibility: visible;
   display: block;
}
#wb_master-frameText23
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText29
{
   visibility: visible;
   display: block;
}
#wb_master-frameText29
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText31
{
   visibility: visible;
   display: block;
}
#wb_master-frameText31
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText34
{
   visibility: visible;
   display: block;
}
#wb_master-frameText34
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText36
{
   visibility: visible;
   display: block;
}
#wb_master-frameText36
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText39
{
   visibility: visible;
   display: block;
}
#wb_master-frameText39
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText13
{
   visibility: visible;
   display: block;
}
#wb_master-frameText13
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText14
{
   visibility: visible;
   display: block;
}
#wb_master-frameText14
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText17
{
   visibility: visible;
   display: block;
}
#wb_master-frameText17
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText21
{
   visibility: visible;
   display: block;
}
#wb_master-frameText21
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText22
{
   visibility: visible;
   display: block;
}
#wb_master-frameText22
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText43
{
   visibility: visible;
   display: block;
}
#wb_master-frameText43
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText47
{
   visibility: visible;
   display: block;
}
#wb_master-frameText47
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText48
{
   visibility: visible;
   display: block;
}
#wb_master-frameText48
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText51
{
   visibility: visible;
   display: block;
}
#wb_master-frameText51
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText55
{
   visibility: visible;
   display: block;
}
#wb_master-frameText55
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText56
{
   visibility: visible;
   display: block;
}
#wb_master-frameText56
{
   margin: 0;
   padding: 0 0 7px 0;
}
#wb_master-frameText59
{
   visibility: visible;
   display: block;
}
#wb_master-frameText59
{
   margin: 0;
   padding: 0 0 7px 0;
}
}
body {font-family: Raleway Medium}